nebula.maven-dependencies-jar
Owner: Nebula Plugins
Add component.jar, mostly useful when another plugin interferes with how nebula.maven-dependencies works
https://github.com/nebula-plugins/nebula-publishing-plugin
Sources: https://github.com/nebula-plugins/nebula-publishing-plugin.git
Version 4.1.0
4.1.0
Created 14 September 2015.
Add component.jar, mostly useful when another plugin interferes with how nebula.maven-dependencies works
Using the plugins DSL:
plugins {
id("nebula.maven-dependencies-jar") version "4.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:4.1.0")
}
}
apply(plugin = "nebula.maven-dependencies-jar")
Using the plugins DSL:
plugins {
id "nebula.maven-dependencies-jar" version "4.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:4.1.0"
}
}
apply plugin: "nebula.maven-dependencies-jar"