de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin
Owner: MONKEY WORKS GmbH
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.8 (latest)
0.4.8
Created 20 July 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.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.monkeyworks.buildmonkey:mavenArtefacts:0.4.8")
}
}
apply(plugin = "de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin")
Using the plugins DSL:
plugins {
id "de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin" version "0.4.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.monkeyworks.buildmonkey:mavenArtefacts:0.4.8"
}
}
apply plugin: "de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin"