Search Gradle plugins

de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin

Converts a list of maven artefacts to OSGi bundles and puts them into a mirrored maven repository and new p2 reposiotry

https://github.com/MONKEY-WORKS/BuildMonkey/wiki

Sources: https://github.com/MONKEY-WORKS/BuildMonkey

Version 0.4.4

Created 15 March 2017.

Converts a list of maven artefacts to OSGi bundles and puts them into a mirrored maven repository and new p2 reposiotry

Using the plugins DSL:

plugins {
  id("de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin") version "0.4.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.monkeyworks.buildmonkey:mavenArtefacts:0.4.4")
  }
}

apply(plugin = "de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin")

Using the plugins DSL:

plugins {
  id "de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin" version "0.4.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.monkeyworks.buildmonkey:mavenArtefacts:0.4.4"
  }
}

apply plugin: "de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin"

Learn how to apply plugins to subprojects