From 72c8db034686c2be97b0e0a0157da61ad6b3a1f0 Mon Sep 17 00:00:00 2001 From: jez04 <david.jezek@post.cz> Date: Tue, 24 Sep 2024 18:39:33 +0200 Subject: [PATCH] feat: upgrade version of plugins, libraries and artifacts --- pom.xml | 12 ++++++------ src/main/resources/archetype-resources/pom.xml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index ba589b8..29c2004 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>io.github.jez04-cs</groupId> <artifactId>javafx-quickstart</artifactId> - <version>1.0.12</version> + <version>1.0.13</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> diff --git a/src/main/resources/archetype-resources/pom.xml b/src/main/resources/archetype-resources/pom.xml index 9f1f4cc..cf91919 100644 --- a/src/main/resources/archetype-resources/pom.xml +++ b/src/main/resources/archetype-resources/pom.xml @@ -13,10 +13,10 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>21</maven.compiler.release> - <JavaFX.version>22-ea+16</JavaFX.version> - <JUnit.version>5.10.1</JUnit.version> - <log4j.version>2.22.1</log4j.version> - <lombok.version>1.18.30</lombok.version> + <JavaFX.version>23</JavaFX.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> @@ -69,7 +69,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> @@ -82,7 +82,7 @@ </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> - <version>3.2.1</version> + <version>3.5.0</version> </plugin> </plugins> </build> -- GitLab