Java library for create OS specific packages.
This project is uses Gradle as the build tool. For build you need clone source code and simply run one command. All magic will happed automatically.
git clone git@github.com:jamel/pkg4j.git
cd pkg4j
./gradlew build
If you are using Maven as build tool for your project, simply add this dependency to your pom.xml.
<dependency>
<groupId>org.jamel.pkg4j</groupId>
<artifactId>pkg4j-core</artifactId>
<version>0.0.6</version>
</dependency>
For Gradle projects it is even simpler. Make sure that your dependency block looks like:
dependencies {
compile "org.jamel.pkg4j:pkg4j-core:0.0.6"
// ... other dependencies
}