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.34.1

Created 29 December 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.diffplug.gradle:goomph:3.34.1")
  }
}

apply(plugin = "com.diffplug.p2.asmaven")

Using the plugins DSL:

plugins {
  id "com.diffplug.p2.asmaven" version "3.34.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.diffplug.gradle:goomph:3.34.1"
  }
}

apply plugin: "com.diffplug.p2.asmaven"

Learn how to apply plugins to subprojects