Search Gradle plugins

com.diffplug.p2.asmaven

Downloads a set of artifacts from a p2 repository and stuffs them into a local maven repository.

https://github.com/diffplug/goomph

Sources: https://github.com/diffplug/goomph.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.diffplug.p2.asmaven") version "4.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.diffplug.gradle:goomph:4.0.1")
      }
    }
    
    apply(plugin = "com.diffplug.p2.asmaven")
  • Applying plugins to all subprojects .