Skip to content

Commit 229f429

Browse files
committed
Update versions of dependencies and plugins
1 parent d1f327b commit 229f429

2 files changed

Lines changed: 26 additions & 7 deletions

File tree

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,25 @@ This is a Maven plugin for working with Oracle's AppBundler. Specifically the fo
1313
</plugin>
1414
```
1515

16+
NOTE: By default, the plugin will use a universal native binary for the AppBundler that should run on both macOS for x86_64 and arm64 processors.
17+
If you only need a platform specific binary, you can override the dependency on `com.evolvedbinary.appbundler:appbundler` with a classifier of either: `<classifier>macos-x86_64-only</classifier>` or `<classifier>macos-arm64-only</classifier>`, for example:
18+
19+
```xml
20+
<plugin>
21+
<groupId>com.evolvedbinary.appbundler</groupId>
22+
<artifactId>appbundler-maven-plugin</artifactId>
23+
<version>3.1.0</version>
24+
<dependencies>
25+
<dependency>
26+
<groupId>com.evolvedbinary.appbundler</groupId>
27+
<artifactId>appbundler</artifactId>
28+
<version>1.4.1</version>
29+
<classifier>macos-x86_64-only</classifier>
30+
</dependency>
31+
</dependencies>
32+
</plugin>
33+
```
34+
1635
## Example
1736

1837
```xml

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<dependency>
4949
<groupId>org.apache.maven.shared</groupId>
5050
<artifactId>file-management</artifactId>
51-
<version>3.1.0</version>
51+
<version>3.2.0</version>
5252
</dependency>
5353

5454
<dependency>
@@ -89,7 +89,7 @@
8989
<dependency>
9090
<groupId>com.evolvedbinary.appbundler</groupId>
9191
<artifactId>appbundler</artifactId>
92-
<version>1.3.1</version>
92+
<version>1.4.1</version>
9393
</dependency>
9494

9595
</dependencies>
@@ -100,7 +100,7 @@
100100
<plugin>
101101
<groupId>org.apache.maven.plugins</groupId>
102102
<artifactId>maven-plugin-plugin</artifactId>
103-
<version>3.11.0</version>
103+
<version>3.15.1</version>
104104
</plugin>
105105

106106
<plugin>
@@ -120,7 +120,7 @@
120120
<plugin>
121121
<groupId>org.apache.maven.plugins</groupId>
122122
<artifactId>maven-dependency-plugin</artifactId>
123-
<version>3.8.0</version>
123+
<version>3.8.1</version>
124124
<executions>
125125
<execution>
126126
<id>analyze</id>
@@ -137,7 +137,7 @@
137137
<plugin>
138138
<groupId>org.apache.maven.plugins</groupId>
139139
<artifactId>maven-compiler-plugin</artifactId>
140-
<version>3.13.0</version>
140+
<version>3.14.0</version>
141141
<configuration>
142142
<source>${project.build.source}</source>
143143
<target>${project.build.target}</target>
@@ -196,7 +196,7 @@
196196
<plugin>
197197
<groupId>org.apache.maven.plugins</groupId>
198198
<artifactId>maven-javadoc-plugin</artifactId>
199-
<version>3.10.0</version>
199+
<version>3.11.1</version>
200200
<configuration>
201201
<archive>
202202
<manifest>
@@ -229,7 +229,7 @@
229229
<plugin>
230230
<groupId>org.apache.maven.plugins</groupId>
231231
<artifactId>maven-gpg-plugin</artifactId>
232-
<version>3.2.5</version>
232+
<version>3.2.8</version>
233233
</plugin>
234234

235235
</plugins>

0 commit comments

Comments
 (0)