de.inetsoftware.setupbuilder
Owner: Horcrux7
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.
https://github.com/i-net-software/SetupBuilder
Sources: https://github.com/i-net-software/SetupBuilder
Version 8.4.21 (latest)
8.4.21
Created 19 December 2023.
The Setup Builder is a plugin for Gradle which can create native setups for different platforms like Windows, Linux and OSX. The output is a *.msi, a *.deb, a *.rpm or a *.dmg file.
Using the plugins DSL:
plugins {
id("de.inetsoftware.setupbuilder") version "8.4.21"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.inetsoftware:SetupBuilder:8.4.21")
}
}
apply(plugin = "de.inetsoftware.setupbuilder")
Using the plugins DSL:
plugins {
id "de.inetsoftware.setupbuilder" version "8.4.21"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.inetsoftware:SetupBuilder:8.4.21"
}
}
apply plugin: "de.inetsoftware.setupbuilder"