Search Gradle plugins

de.inetsoftware.appbundler

Owner: Horcrux7

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.

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.appbundler") version "7.2.12"
}

See also:

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