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 16.0.0 (latest)
16.0.0
Created 05 February 2020.
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 "16.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-publishing-plugin:16.0.0")
}
}
apply(plugin = "nebula.compile-api")
Using the plugins DSL:
plugins {
id "nebula.compile-api" version "16.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-publishing-plugin:16.0.0"
}
}
apply plugin: "nebula.compile-api"