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

Using the plugins DSL:

plugins {
  id("de.inetsoftware.appbundler") version "3.4.4a"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.inetsoftware:SetupBuilder:3.4.4a")
  }
}

apply(plugin = "de.inetsoftware.appbundler")

Using the plugins DSL:

plugins {
  id "de.inetsoftware.appbundler" version "3.4.4a"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.inetsoftware:SetupBuilder:3.4.4a"
  }
}

apply plugin: "de.inetsoftware.appbundler"

Learn how to apply plugins to subprojects