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

Version 3.36.1

3.36.1

Created 20 April 2022.

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

Add this plugin to your build using the plugins DSL:

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

See also:

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