Search Gradle plugins

pt.rasm.gradle.ship

Plugin to distribute applications with installers and bundled Java Runtime Environments

http://github.com/rasmartins/gradle-ship

Sources: https://github.com/rasmartins/gradle-ship

Using the plugins DSL:

plugins {
  id("pt.rasm.gradle.ship") version "2016.12.20"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.pt.rasm.gradle.ship:Ship:2016.12.20")
  }
}

apply(plugin = "pt.rasm.gradle.ship")

Using the plugins DSL:

plugins {
  id "pt.rasm.gradle.ship" version "2016.12.20"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.pt.rasm.gradle.ship:Ship:2016.12.20"
  }
}

apply plugin: "pt.rasm.gradle.ship"

Learn how to apply plugins to subprojects