diff --git a/pom.xml b/pom.xml index 349b918af8ac03b64602ce81d4041681919cef99..adbd7503d6cae62f2c5c3b7a35ba921c9d0470f0 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>io.github.jez04-cs</groupId> <artifactId>java21-quickstart</artifactId> - <version>1.0.13</version> + <version>1.0.14</version> <packaging>maven-archetype</packaging> @@ -64,7 +64,7 @@ https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> - <version>3.3.0</version> + <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> @@ -85,7 +85,7 @@ exec order --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> - <version>3.1.1</version> + <version>3.1.3</version> <executions> <execution> <id>deploy</id> @@ -126,7 +126,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>3.6.3</version> + <version>3.10.0</version> <executions> <execution> <id>attach-javadocs</id> @@ -153,7 +153,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> - <version>3.1.0</version> + <version>3.2.6</version> <executions> <execution> <id>sign-artifacts</id> @@ -171,7 +171,7 @@ <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> - <version>0.3.1</version> + <version>0.5.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> @@ -182,6 +182,4 @@ </build> </profile> </profiles> - - </project> diff --git a/src/main/resources/archetype-resources/pom.xml b/src/main/resources/archetype-resources/pom.xml index 9cd7e96d1844bd42661a892d56a757c5c6711147..00188c480cbd92407895c123b54358bec44c1647 100644 --- a/src/main/resources/archetype-resources/pom.xml +++ b/src/main/resources/archetype-resources/pom.xml @@ -13,9 +13,9 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>21</maven.compiler.release> - <JUnit.version>5.10.1</JUnit.version> - <log4j.version>2.22.1</log4j.version> - <lombok.version>1.18.30</lombok.version> + <JUnit.version>5.11.0</JUnit.version> + <log4j.version>2.23.1</log4j.version> + <lombok.version>1.18.34</lombok.version> </properties> <dependencyManagement> <dependencies> @@ -58,7 +58,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>3.12.1</version> + <version>3.13.0</version> <configuration> <annotationProcessorPaths> <path> @@ -71,7 +71,7 @@ </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> - <version>3.2.1</version> + <version>3.5.0</version> </plugin> </plugins> </build>