Skip to content

Commit

Permalink
Migrate to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
perdian committed Nov 1, 2022
1 parent 296fe2c commit d40d047
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
6 changes: 3 additions & 3 deletions example-classpath/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
</developers>

<properties>
<java.version>11</java.version>
<javafx.version>11.0.2</javafx.version>
<java.version>18</java.version>
<javafx.version>18</javafx.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -62,7 +62,7 @@
<plugin>
<groupId>de.perdian.maven.plugins</groupId>
<artifactId>macosappbundler-maven-plugin</artifactId>
<version>1.18.1</version>
<version>1.19.0-SNAPSHOT</version>
<configuration>
<plist>
<JVMMainClassName>de.perdian.maven.plugins.macosappbundler.example.ExampleApplicationLauncher</JVMMainClassName>
Expand Down
6 changes: 3 additions & 3 deletions example-modulepath/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
</developers>

<properties>
<java.version>11</java.version>
<javafx.version>11.0.2</javafx.version>
<java.version>18</java.version>
<javafx.version>18</javafx.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -62,7 +62,7 @@
<plugin>
<groupId>de.perdian.maven.plugins</groupId>
<artifactId>macosappbundler-maven-plugin</artifactId>
<version>1.18.1</version>
<version>1.19.0-SNAPSHOT</version>
<configuration>
<plist>
<JVMMainModuleName>de.perdian.maven.plugins.macosappbundler.example/de.perdian.maven.plugins.macosappbundler.example.ExampleApplicationLauncher</JVMMainModuleName>
Expand Down
21 changes: 11 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>de.perdian.maven.plugins</groupId>
<artifactId>macosappbundler-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.18.1</version>
<version>1.19.0-SNAPSHOT</version>

<name>macOS app bundler Maven plugin</name>
<description>Maven plugin to create a macOS application bundle</description>
Expand Down Expand Up @@ -39,9 +39,10 @@

<properties>

<file-management.version>3.0.0</file-management.version>
<junit.version>5.8.2</junit.version>
<maven.version>3.8.4</maven.version>
<file-management.version>3.1.0</file-management.version>
<java.version>9</java.version>
<junit.version>5.9.1</junit.version>
<maven.version>3.8.6</maven.version>
<maven.annotations.version>3.6.4</maven.annotations.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -54,7 +55,7 @@
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<version>3.0.0</version>
<version>3.1.0</version>
<executions>
<execution>
<id>compile-native-executable</id>
Expand All @@ -72,10 +73,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.9.0</version>
<version>3.10.1</version>
<configuration>
<source>9</source>
<target>9</target>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
Expand Down Expand Up @@ -182,7 +183,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<version>3.4.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -192,7 +193,7 @@
</execution>
</executions>
<configuration>
<source>9</source>
<source>${java.version}</source>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit d40d047

Please sign in to comment.