Search Gradle plugins

Version 0.2

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.de.monkeyworks.buildmonkey:gradle.p2:0.2")
      }
    }
    
    apply(plugin = "de.monkeyworks.buildmonkey.p2.P2MirrorPlugin")
  • Applying plugins to all subprojects .