gov.raptor.gradle.plugins.installer-support
RaptorX Community Installer Support Plugin
Sources: https://bitbucket.di2e.net/projects/RaptorX
Version 0.3-RC10
Created 13 September 2018.
                RaptorX Community Installer Support Plugin
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("gov.raptor.gradle.plugins.installer-support") version "0.3-RC10"
}
              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("gov.raptor.gradle.plugins.installer-support:gov.raptor.gradle.plugins.installer-support.gradle.plugin:0.3-RC10") }It can then be applied in the precompiled script plugin:plugins { id("gov.raptor.gradle.plugins.installer-support") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gov.raptor.gradle.plugins.installer-support:gov.raptor.gradle.plugins.installer-support.gradle.plugin:0.3-RC10") } } apply(plugin = "gov.raptor.gradle.plugins.installer-support") - Applying plugins to all subprojects .