nebula.compile-api
Owner: Nebula Plugins
Adds a compileApi configuration, dependencies in this configuration will be put in compile conf/scope of ivy/maven
https://github.com/nebula-plugins/nebula-publishing-plugin
Sources: https://github.com/nebula-plugins/nebula-publishing-plugin.git
Version 8.1.2
8.1.2
Created 10 July 2018.
Adds a compileApi configuration, dependencies in this configuration will be put in compile conf/scope of ivy/maven
Using the plugins DSL:
plugins {
id("nebula.compile-api") version "8.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:8.1.2")
}
}
apply(plugin = "nebula.compile-api")
Using the plugins DSL:
plugins {
id "nebula.compile-api" version "8.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:8.1.2"
}
}
apply plugin: "nebula.compile-api"