From 257e97d9b35eeeb86076045a4d11a90ff43c1997 Mon Sep 17 00:00:00 2001 From: "jose.pereda" <jose.pereda@gluonhq.com> Date: Wed, 8 Mar 2023 22:53:14 +0100 Subject: [PATCH 1/2] Bump version of all dependencies --- pom.xml | 43 +++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/pom.xml b/pom.xml index 4f41b0d..a7c3f30 100644 --- a/pom.xml +++ b/pom.xml @@ -44,8 +44,8 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> - <javadoc.plugin.version>3.1.0</javadoc.plugin.version> - <gpg.plugin.version>1.6</gpg.plugin.version> + <javadoc.plugin.version>3.5.0</javadoc.plugin.version> + <gpg.plugin.version>3.0.1</gpg.plugin.version> <substrate.version>0.0.57-SNAPSHOT</substrate.version> </properties> @@ -58,12 +58,13 @@ <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> - <version>3.6.0</version> + <version>3.9.0</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> - <version>3.6.0</version> + <version>3.8.1</version> <scope>provided</scope> </dependency> <dependency> @@ -79,33 +80,35 @@ <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> - <version>3.6.0</version> + <version>3.9.0</version> + <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-invoker</artifactId> - <version>2.2</version> + <version>3.2.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-aether-provider</artifactId> <version>3.3.9</version> + <scope>provided</scope> </dependency> <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-transport-http</artifactId> - <version>1.1.0</version> + <groupId>org.apache.maven.resolver</groupId> + <artifactId>maven-resolver-transport-http</artifactId> + <version>1.9.6</version> </dependency> <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-transport-file</artifactId> - <version>1.1.0</version> + <groupId>org.apache.maven.resolver</groupId> + <artifactId>maven-resolver-transport-file</artifactId> + <version>1.9.6</version> </dependency> <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-connector-basic</artifactId> - <version>1.1.0</version> + <groupId>org.apache.maven.resolver</groupId> + <artifactId>maven-resolver-connector-basic</artifactId> + <version>1.9.6</version> </dependency> </dependencies> @@ -129,17 +132,17 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>3.8.1</version> + <version>3.9.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> - <version>3.6.0</version> + <version>3.8.1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> - <version>1.6.7</version> + <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> @@ -150,7 +153,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> - <version>3.0.0-M3</version> + <version>3.2.1</version> <executions> <execution> <id>enforce-no-snapshots</id> @@ -181,7 +184,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> - <version>2.2.1</version> + <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> From c9851d642d976a300a6ec4afc66509ce40de3771 Mon Sep 17 00:00:00 2001 From: Abhinay Agarwal <abhinay.agarwal@gluonhq.com> Date: Wed, 13 Sep 2023 15:57:09 +0530 Subject: [PATCH 2/2] update versions --- pom.xml | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/pom.xml b/pom.xml index a7c3f30..f06af2f 100644 --- a/pom.xml +++ b/pom.xml @@ -1,5 +1,5 @@ <!-- - ~ Copyright (c) 2019, 2021, Gluon + ~ Copyright (c) 2019, 2023, Gluon ~ All rights reserved. ~ ~ Redistribution and use in source and binary forms, with or without @@ -34,7 +34,7 @@ <groupId>com.gluonhq</groupId> <artifactId>gluonfx-maven-plugin</artifactId> <packaging>maven-plugin</packaging> - <version>1.0.17-SNAPSHOT</version> + <version>1.0.20-SNAPSHOT</version> <name>GluonFX plugin for Maven</name> <description>GluonFX plugin allows to run JavaFX application on the JVM or to create their native images.</description> <inceptionYear>2019</inceptionYear> @@ -44,9 +44,11 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> + <source.plugin.version>3.3.0</source.plugin.version> <javadoc.plugin.version>3.5.0</javadoc.plugin.version> - <gpg.plugin.version>3.0.1</gpg.plugin.version> - <substrate.version>0.0.57-SNAPSHOT</substrate.version> + <gpg.plugin.version>3.1.0</gpg.plugin.version> + <maven.resolver.version>1.9.15</maven.resolver.version> + <substrate.version>0.0.60-SNAPSHOT</substrate.version> </properties> <dependencies> @@ -58,13 +60,13 @@ <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> - <version>3.9.0</version> + <version>3.9.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> - <version>3.8.1</version> + <version>3.9.0</version> <scope>provided</scope> </dependency> <dependency> @@ -80,7 +82,7 @@ <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> - <version>3.9.0</version> + <version>3.9.4</version> <scope>provided</scope> </dependency> <dependency> @@ -98,17 +100,17 @@ <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-transport-http</artifactId> - <version>1.9.6</version> + <version>${maven.resolver.version}</version> </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-transport-file</artifactId> - <version>1.9.6</version> + <version>${maven.resolver.version}</version> </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-connector-basic</artifactId> - <version>1.9.6</version> + <version>${maven.resolver.version}</version> </dependency> </dependencies> @@ -132,12 +134,12 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>3.9.0</version> + <version>3.11.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> - <version>3.8.1</version> + <version>3.9.0</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> @@ -153,7 +155,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> - <version>3.2.1</version> + <version>3.4.1</version> <executions> <execution> <id>enforce-no-snapshots</id> @@ -184,7 +186,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> - <version>3.2.1</version> + <version>${source.plugin.version}</version> <executions> <execution> <id>attach-sources</id>