de.monkeyworks.buildmonkey.p2.P2MirrorPlugin
                  Owner:
                  
                    
                    MONKEY WORKS GmbH
                  
                
Create P2 repository from certain P2 repositories
https://github.com/MONKEY-WORKS/BuildMonkey/wiki
Sources: https://github.com/MONKEY-WORKS/BuildMonkey
Version 0.2
Created 25 February 2017.
                Create P2 repository from certain P2 repositories
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("de.monkeyworks.buildmonkey.p2.P2MirrorPlugin") version "0.2"
}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("de.monkeyworks.buildmonkey.p2.P2MirrorPlugin:de.monkeyworks.buildmonkey.p2.P2MirrorPlugin.gradle.plugin:0.2") }It can then be applied in the precompiled script plugin:plugins { id("de.monkeyworks.buildmonkey.p2.P2MirrorPlugin") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.monkeyworks.buildmonkey.p2.P2MirrorPlugin:de.monkeyworks.buildmonkey.p2.P2MirrorPlugin.gradle.plugin:0.2") } } apply(plugin = "de.monkeyworks.buildmonkey.p2.P2MirrorPlugin")
- Applying plugins to all subprojects .