https://github.com/evolvedbinary/appbundler-maven-build
Maven build of the AppBundler
https://github.com/evolvedbinary/appbundler-maven-build
app appbundler java mac maven
Last synced: 2 months ago
JSON representation
Maven build of the AppBundler
- Host: GitHub
- URL: https://github.com/evolvedbinary/appbundler-maven-build
- Owner: evolvedbinary
- License: gpl-2.0
- Created: 2019-04-12T11:35:32.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-07-09T06:40:36.000Z (4 months ago)
- Last Synced: 2025-08-17T08:56:37.012Z (3 months ago)
- Topics: app, appbundler, java, mac, maven
- Size: 120 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AppBundler Maven Build
======================
[](https://github.com/evolvedbinary/appbundler-maven-build/actions/workflows/ci.yml)
[](https://central.sonatype.com/search?namespace=com.evolvedbinary.appbundler)
This project simply downloads the latest AppBundler code from https://github.com/evolvedbinary/appbundler or https://github.com/TheInfiniteKind/appbundler
and builds a Maven artifact `com.evolvedbinary.appbundler:appbundler`.
## Usage
To use the AppBundler in your own project you can add the following to your `pom.xml` file:
```xml
com.evolvedbinary.appbundler
appbundler
1.4.1
```
The native part of the AppBundler artifact is built as a Universal binary that should run on both macOS for x86_64 and arm64 processors.
If you only need a platform specific binary, you may add a classifier to the dependency coordinates above of either: `macos-x86_64-only` or `macos-arm64-only`.
## Compiling
To build you will need a macOS machine with Git installed. You can then run:
```bash
$ git clone https://github.com/evolvedbinary/appbundler-maven-build.git
$ cd appbundler-maven-build
$ ./mvnw clean package
```
NOTE: If you are on a Windows platform you should replace `./mvnw` with `mvn.cmd`.