Search Gradle plugins

nebula.compile-api

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("nebula.compile-api") version "9.5.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.netflix.nebula:nebula-publishing-plugin:9.5.2")
      }
    }
    
    apply(plugin = "nebula.compile-api")
  • Applying plugins to all subprojects .