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.2.2 (latest)
4.2.2
Created 20 October 2015.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
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.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:4.2.2")
}
}
apply(plugin = "nebula.maven-dependencies-jar")
Using the plugins DSL:
plugins {
id "nebula.maven-dependencies-jar" version "4.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:4.2.2"
}
}
apply plugin: "nebula.maven-dependencies-jar"