Search Gradle plugins

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.inetsoftware.setupbuilder") version "3.4.4c"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.de.inetsoftware:SetupBuilder:3.4.4c")
      }
    }
    
    apply(plugin = "de.inetsoftware.setupbuilder")
  • Applying plugins to all subprojects .