pt.rasm.gradle.ship
                  Owner:
                  
                    
                    Ricardo Martins
                  
                
Plugin to distribute applications with installers and bundled Java Runtime Environments
http://github.com/rasmartins/gradle-ship
Sources: https://github.com/rasmartins/gradle-ship
Version 2016.12.23
Created 03 December 2016.
                Plugin to distribute applications with installers and bundled Java Runtime Environments
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("pt.rasm.gradle.ship") version "2016.12.23"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("pt.rasm.gradle.ship:pt.rasm.gradle.ship.gradle.plugin:2016.12.23") }It can then be applied in the precompiled script plugin:plugins { id("pt.rasm.gradle.ship") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pt.rasm.gradle.ship:pt.rasm.gradle.ship.gradle.plugin:2016.12.23") } } apply(plugin = "pt.rasm.gradle.ship")
- Applying plugins to all subprojects .