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.8 (latest)

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin:de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin.gradle.plugin:0.4.8")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin:de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin.gradle.plugin:0.4.8")
      }
    }
    
    apply(plugin = "de.monkeyworks.buildmonkey.maven.MavenArtefactsPlugin")
  • Applying plugins to all subprojects .