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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.pt.rasm.gradle.ship:Ship:2016.12.31")
      }
    }
    
    apply(plugin = "pt.rasm.gradle.ship")
  • Applying plugins to all subprojects .