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
This commit is contained in:
Bipin kumar 2023-06-30 16:38:28 +05:30 committed by GitHub
parent c6a6279724
commit cd747f077b
5 changed files with 88 additions and 92 deletions

View File

@ -666,7 +666,6 @@
</plugins> </plugins>
</build> </build>
</profile> </profile>
<profile> <profile>
@ -894,7 +893,6 @@
<module>reactor-core</module> <module>reactor-core</module>
<module>rsocket</module> <module>rsocket</module>
<!-- Modules from default second--> <!-- Modules from default second-->
<module>spring-5</module> <module>spring-5</module>
<module>spring-5-webflux</module> <module>spring-5-webflux</module>
@ -1165,7 +1163,6 @@
<module>reactor-core</module> <module>reactor-core</module>
<module>rsocket</module> <module>rsocket</module>
<!-- Modules from default second--> <!-- Modules from default second-->
<module>spring-5</module> <module>spring-5</module>

View File

@ -1,95 +1,95 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung.spring-thymeleaf-attributes.module</groupId> <groupId>com.baeldung.spring-thymeleaf-attributes.module</groupId>
<artifactId>accessing-session-attributes</artifactId> <artifactId>accessing-session-attributes</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<parent>
<groupId>com.baeldung.spring-thymeleaf-attributes</groupId>
<artifactId>spring-thymeleaf-attributes</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath> <packaging>war</packaging>
</parent>
<dependencies> <parent>
<dependency> <groupId>com.baeldung.spring-thymeleaf-attributes</groupId>
<groupId>jakarta.servlet</groupId> <artifactId>spring-thymeleaf-attributes</artifactId>
<artifactId>jakarta.servlet-api</artifactId> <version>0.0.1-SNAPSHOT</version>
<scope>provided</scope> <relativePath>../pom.xml</relativePath>
</dependency> </parent>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring6</artifactId>
<version>${thymeleaf.spring6.version}</version>
</dependency>
<!-- test scoped -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.engine.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.engine.version}</version>
<scope>test</scope>
</dependency>
</dependencies> <dependencies>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring6</artifactId>
<version>${thymeleaf.spring6.version}</version>
</dependency>
<!-- test scoped -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.engine.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.jupiter.engine.version}</version>
<scope>test</scope>
</dependency>
<build> </dependencies>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins> <build>
<plugin> <resources>
<groupId>org.springframework.boot</groupId> <resource>
<artifactId>spring-boot-maven-plugin</artifactId> <directory>src/main/resources</directory>
<configuration> </resource>
<jvmArguments> </resources>
-Dfile.encoding="UTF-8" -Xdebug
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
</jvmArguments>
</configuration>
</plugin>
</plugins>
</build>
<properties> <plugins>
<start-class>com.baeldung.accesing_session_attributes.SpringWebApplicationInitializer</start-class> <plugin>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <groupId>org.springframework.boot</groupId>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <artifactId>spring-boot-maven-plugin</artifactId>
<file.encoding>UTF-8</file.encoding> <configuration>
<downloadSources>true</downloadSources> <jvmArguments>
<downloadJavadocs>true</downloadJavadocs> -Dfile.encoding="UTF-8" -Xdebug
<junit.jupiter.engine.version>5.9.3</junit.jupiter.engine.version> -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
<mockito.version>5.3.1</mockito.version> </jvmArguments>
<thymeleaf.spring6.version>3.1.1.RELEASE</thymeleaf.spring6.version> </configuration>
</properties> </plugin>
</plugins>
</build>
<properties>
<start-class>com.baeldung.accesing_session_attributes.SpringWebApplicationInitializer</start-class>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<file.encoding>UTF-8</file.encoding>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
<junit.jupiter.engine.version>5.9.3</junit.jupiter.engine.version>
<mockito.version>5.3.1</mockito.version>
<thymeleaf.spring6.version>3.1.1.RELEASE</thymeleaf.spring6.version>
</properties>
</project> </project>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>mockito-2</artifactId> <artifactId>mockito-2</artifactId>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>testing-techniques</artifactId> <artifactId>testing-techniques</artifactId>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@ -68,7 +68,6 @@
</plugins> </plugins>
</build> </build>
<properties> <properties>
<dom4j.version>2.1.3</dom4j.version> <dom4j.version>2.1.3</dom4j.version>
<jackson.version>2.14.1</jackson.version> <jackson.version>2.14.1</jackson.version>