org.spongepowered.gradle.meta.bundle
                  Owner:
                  
                    
                    Gabriel Harris-Rouquette
                  
                
Gradle plugin that provides the project with nesting capabilities for PluginMeta representation
https://github.com/SpongePowered/SpongeGradle
Sources: https://github.com/SpongePowered/SpongeGradle
Version 0.11.2-SNAPSHOT
Created 14 April 2020.
                Gradle plugin that provides the project with nesting capabilities for PluginMeta representation
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.spongepowered.gradle.meta.bundle") version "0.11.2-SNAPSHOT"
}
              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("org.spongepowered.gradle.meta.bundle:org.spongepowered.gradle.meta.bundle.gradle.plugin:0.11.2-SNAPSHOT") }It can then be applied in the precompiled script plugin:plugins { id("org.spongepowered.gradle.meta.bundle") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.spongepowered.gradle.meta.bundle:org.spongepowered.gradle.meta.bundle.gradle.plugin:0.11.2-SNAPSHOT") } } apply(plugin = "org.spongepowered.gradle.meta.bundle") - Applying plugins to all subprojects .