nebula.ivy-compile-only
Owner: Nebula Plugins
Deal with compileOnly configuration
https://github.com/nebula-plugins/nebula-publishing-plugin
Sources: https://github.com/nebula-plugins/nebula-publishing-plugin.git
Using the plugins DSL:
plugins {
id("nebula.ivy-compile-only") version "9.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:9.5.2")
}
}
apply(plugin = "nebula.ivy-compile-only")
Using the plugins DSL:
plugins {
id "nebula.ivy-compile-only" version "9.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:9.5.2"
}
}
apply plugin: "nebula.ivy-compile-only"