The Setup Builder is a plugin for Gradle which can create a native setups for different platforms like Windows, Linux and OSX. The output is a *.msi, a *.deb, a *.rpm or a *.dmg file. The target is an installer for Java applications.
Note: This plugin is now published to Maven Central. Snapshot versions are available from Sonatype snapshots repository. See Using Snapshots section below.
Snapshot versions are published to Sonatype snapshots repository. To use snapshots in your project, add the snapshot repository to your build:
buildscript {
repositories {
maven {
url uri('https://oss.sonatype.org/content/repositories/snapshots/')
}
mavenCentral()
}
dependencies {
classpath 'de.inetsoftware:SetupBuilder:8.4.24-SNAPSHOT'
}
}Alternatively, for local development, you can publish to your local Maven repository:
./gradlew publishToMavenLocalThen use mavenLocal() in your repositories:
repositories {
mavenLocal()
mavenCentral()
}| Platform | Requirement |
|---|---|
| all | Java 8 or higher. Gradle must run with Java 8 |
| Windows | Wix Toolset or WixEdit must be installed |
| Linux | Lintian, FakeRoot on Ubuntu: apt-get install lintian fakeroot |
| Linux | dpkg for creating Debian packages: apt-get install dpkg |
| Linux | rpm for creating RPM packages: apt-get install rpm |
| MacOS | hdiutil, only available on Mac |
| Plugin Version | Gradle Version |
|---|---|
| <= 1.5 | 2.3 - 2.11 |
| 1.6 | 2.12 - 2.13 |
| 1.7 | 2.14 |
| 1.8, 3.0.x | 3.0 |
| 3.1.x | 3.1 - 3.3 |
| 3.4.x | 3.4 - 4.3 |
| 4.5.x | 4.5 - 4.7 |
| 4.8.x | 4.8 - 7.1 |
| 7.2.x | 7.2 - 8.3 |
| 8.4.x | >= 8.4 |
There is a file SetupBuilderVersion.gradle to export the required version of SetupBuilder depending on the Gradle version. It can be used to automatically obtain the correct SetupBuilder version.
It can be used as followed:
Using Gradle Plugin Portal (recommended):
plugins {
id 'de.inetsoftware.setupbuilder' version '8.4.23'
}Using buildscript (legacy):
buildscript {
repositories {
mavenCentral()
// For snapshots, add Sonatype snapshot repository
maven {
url uri('https://oss.sonatype.org/content/repositories/snapshots/')
}
}
dependencies {
apply from: 'https://raw.githubusercontent.com/i-net-software/SetupBuilder/master/scripts/SetupBuilderVersion.gradle'
classpath 'de.inetsoftware:SetupBuilder:' + setupBuilderVersion()
}
}
apply plugin: 'de.inetsoftware.setupbuilder'The plugin adds the following tasks:
- msi
- deb
- rpm
- dmg
For more information check the wiki.
Using plugins block (recommended):
plugins {
id 'de.inetsoftware.setupbuilder' version '8.4.23'
}Or using buildscript:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'de.inetsoftware:SetupBuilder:8.4.23'
}
}
apply plugin: 'de.inetsoftware.setupbuilder'setupBuilder {
vendor = 'i-net software'
application = "SetupBuilder Plugin"
appIdentifier = "SetupBuilder"
version = '1.0'
licenseFile = 'license.txt'
// icons in different sizes for different usage. you can also use a single *.ico or *.icns file
icons = ['icon16.png', 'icon32.png', 'icon48.png', 'icon128.png']
// all files for all platforms
from( 'source' ) {
include 'files/*.jar'
}
bundleJre = 1.8
}
msi {
// files only for the Windows platform
from( 'windows' ) {
include 'foo.exe'
rename { 'bar.exe' }
}
}
More samples can be found in the testBuilds folder of the project.
More properties can be found in the sources of setupBuilder, msi, deb, rpm and dmg.
Create a zip file with the same files define in setupBuilder extension.
...
setupBuilder {
...
}
task zip(type: Zip) {
with setupBuilder
doLast {
artifacts {
archives zip
}
}
}
For local development, you can build and publish to your local Maven repository:
./gradlew publishToMavenLocalThen use mavenLocal() in your repositories. See Using Snapshots section above.
See CHANGELOG.md for detailed version history and release notes.
Apache License, Version 2.0