From dace2aeeec895fc60993d753e5a87fd81925e636 Mon Sep 17 00:00:00 2001 From: jez04 <david.jezek@post.cz> Date: Tue, 24 Sep 2024 18:46:02 +0200 Subject: [PATCH] feat: upgrade version of plugins, libraries and artifacts --- pom.xml | 14 ++++++-------- src/main/resources/archetype-resources/pom.xml | 10 +++++----- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/pom.xml b/pom.xml index 349b918..adbd750 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 9cd7e96..00188c4 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> -- GitLab