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 9.2.0
Created 31 October 2018.
                Adds a compileApi configuration, dependencies in this configuration will be put in compile conf/scope of ivy/maven
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("nebula.compile-api") version "9.2.0"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("nebula.compile-api:nebula.compile-api.gradle.plugin:9.2.0") }It can then be applied in the precompiled script plugin:plugins { id("nebula.compile-api") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("nebula.compile-api:nebula.compile-api.gradle.plugin:9.2.0") } } apply(plugin = "nebula.compile-api")
- Applying plugins to all subprojects .