Skip to content

Commit cd747f0

Browse files
authored
Java 22625 S to Z (#14332)
* JAVA-22625: Changes made for module T to Z formatting the pom.xml * JAVA-22625: Changes made for module S to Z formatting the pom.xml
1 parent c6a6279 commit cd747f0

5 files changed

Lines changed: 88 additions & 92 deletions

File tree

pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,6 @@
666666
</plugins>
667667
</build>
668668

669-
670669
</profile>
671670

672671
<profile>
@@ -894,7 +893,6 @@
894893
<module>reactor-core</module>
895894
<module>rsocket</module>
896895

897-
898896
<!-- Modules from default second-->
899897
<module>spring-5</module>
900898
<module>spring-5-webflux</module>
@@ -1165,7 +1163,6 @@
11651163
<module>reactor-core</module>
11661164
<module>rsocket</module>
11671165

1168-
11691166
<!-- Modules from default second-->
11701167

11711168
<module>spring-5</module>
Lines changed: 84 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,95 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
55

6-
<modelVersion>4.0.0</modelVersion>
6+
<modelVersion>4.0.0</modelVersion>
77

8-
<groupId>com.baeldung.spring-thymeleaf-attributes.module</groupId>
9-
<artifactId>accessing-session-attributes</artifactId>
10-
<version>0.0.1-SNAPSHOT</version>
11-
<packaging>war</packaging>
12-
13-
<parent>
14-
<groupId>com.baeldung.spring-thymeleaf-attributes</groupId>
15-
<artifactId>spring-thymeleaf-attributes</artifactId>
8+
<groupId>com.baeldung.spring-thymeleaf-attributes.module</groupId>
9+
<artifactId>accessing-session-attributes</artifactId>
1610
<version>0.0.1-SNAPSHOT</version>
17-
<relativePath>../pom.xml</relativePath>
18-
</parent>
11+
<packaging>war</packaging>
12+
13+
<parent>
14+
<groupId>com.baeldung.spring-thymeleaf-attributes</groupId>
15+
<artifactId>spring-thymeleaf-attributes</artifactId>
16+
<version>0.0.1-SNAPSHOT</version>
17+
<relativePath>../pom.xml</relativePath>
18+
</parent>
1919

20-
<dependencies>
21-
<dependency>
22-
<groupId>jakarta.servlet</groupId>
23-
<artifactId>jakarta.servlet-api</artifactId>
24-
<scope>provided</scope>
25-
</dependency>
26-
<dependency>
27-
<groupId>org.springframework.boot</groupId>
28-
<artifactId>spring-boot-starter-web</artifactId>
29-
</dependency>
30-
<dependency>
31-
<groupId>org.thymeleaf</groupId>
32-
<artifactId>thymeleaf-spring6</artifactId>
33-
<version>${thymeleaf.spring6.version}</version>
34-
</dependency>
35-
<!-- test scoped -->
36-
<dependency>
37-
<groupId>org.junit.jupiter</groupId>
38-
<artifactId>junit-jupiter-engine</artifactId>
39-
<version>${junit.jupiter.engine.version}</version>
40-
<scope>test</scope>
41-
</dependency>
42-
<dependency>
43-
<groupId>org.mockito</groupId>
44-
<artifactId>mockito-core</artifactId>
45-
<version>${mockito.version}</version>
46-
<scope>test</scope>
47-
</dependency>
48-
<dependency>
49-
<groupId>org.mockito</groupId>
50-
<artifactId>mockito-junit-jupiter</artifactId>
51-
<version>${mockito.version}</version>
52-
<scope>test</scope>
53-
</dependency>
54-
<dependency>
55-
<groupId>org.junit.jupiter</groupId>
56-
<artifactId>junit-jupiter-api</artifactId>
57-
<version>${junit.jupiter.engine.version}</version>
58-
<scope>test</scope>
59-
</dependency>
20+
<dependencies>
21+
<dependency>
22+
<groupId>jakarta.servlet</groupId>
23+
<artifactId>jakarta.servlet-api</artifactId>
24+
<scope>provided</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>org.springframework.boot</groupId>
28+
<artifactId>spring-boot-starter-web</artifactId>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.thymeleaf</groupId>
32+
<artifactId>thymeleaf-spring6</artifactId>
33+
<version>${thymeleaf.spring6.version}</version>
34+
</dependency>
35+
<!-- test scoped -->
36+
<dependency>
37+
<groupId>org.junit.jupiter</groupId>
38+
<artifactId>junit-jupiter-engine</artifactId>
39+
<version>${junit.jupiter.engine.version}</version>
40+
<scope>test</scope>
41+
</dependency>
42+
<dependency>
43+
<groupId>org.mockito</groupId>
44+
<artifactId>mockito-core</artifactId>
45+
<version>${mockito.version}</version>
46+
<scope>test</scope>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.mockito</groupId>
50+
<artifactId>mockito-junit-jupiter</artifactId>
51+
<version>${mockito.version}</version>
52+
<scope>test</scope>
53+
</dependency>
54+
<dependency>
55+
<groupId>org.junit.jupiter</groupId>
56+
<artifactId>junit-jupiter-api</artifactId>
57+
<version>${junit.jupiter.engine.version}</version>
58+
<scope>test</scope>
59+
</dependency>
6060

61-
</dependencies>
61+
</dependencies>
6262

63-
<build>
64-
<resources>
65-
<resource>
66-
<directory>src/main/resources</directory>
67-
</resource>
68-
</resources>
63+
<build>
64+
<resources>
65+
<resource>
66+
<directory>src/main/resources</directory>
67+
</resource>
68+
</resources>
6969

70-
<plugins>
71-
<plugin>
72-
<groupId>org.springframework.boot</groupId>
73-
<artifactId>spring-boot-maven-plugin</artifactId>
74-
<configuration>
75-
<jvmArguments>
76-
-Dfile.encoding="UTF-8" -Xdebug
77-
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
78-
</jvmArguments>
79-
</configuration>
80-
</plugin>
81-
</plugins>
82-
</build>
70+
<plugins>
71+
<plugin>
72+
<groupId>org.springframework.boot</groupId>
73+
<artifactId>spring-boot-maven-plugin</artifactId>
74+
<configuration>
75+
<jvmArguments>
76+
-Dfile.encoding="UTF-8" -Xdebug
77+
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
78+
</jvmArguments>
79+
</configuration>
80+
</plugin>
81+
</plugins>
82+
</build>
8383

84-
<properties>
85-
<start-class>com.baeldung.accesing_session_attributes.SpringWebApplicationInitializer</start-class>
86-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
87-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
88-
<file.encoding>UTF-8</file.encoding>
89-
<downloadSources>true</downloadSources>
90-
<downloadJavadocs>true</downloadJavadocs>
91-
<junit.jupiter.engine.version>5.9.3</junit.jupiter.engine.version>
92-
<mockito.version>5.3.1</mockito.version>
93-
<thymeleaf.spring6.version>3.1.1.RELEASE</thymeleaf.spring6.version>
94-
</properties>
84+
<properties>
85+
<start-class>com.baeldung.accesing_session_attributes.SpringWebApplicationInitializer</start-class>
86+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
87+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
88+
<file.encoding>UTF-8</file.encoding>
89+
<downloadSources>true</downloadSources>
90+
<downloadJavadocs>true</downloadJavadocs>
91+
<junit.jupiter.engine.version>5.9.3</junit.jupiter.engine.version>
92+
<mockito.version>5.3.1</mockito.version>
93+
<thymeleaf.spring6.version>3.1.1.RELEASE</thymeleaf.spring6.version>
94+
</properties>
9595
</project>

testing-modules/mockito-2/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xmlns="http://maven.apache.org/POM/4.0.0"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>mockito-2</artifactId>
77

testing-modules/testing-techniques/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55

66
<artifactId>testing-techniques</artifactId>
77
<modelVersion>4.0.0</modelVersion>

xml-2/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
</plugins>
6969
</build>
7070

71-
7271
<properties>
7372
<dom4j.version>2.1.3</dom4j.version>
7473
<jackson.version>2.14.1</jackson.version>

0 commit comments

Comments
 (0)