Search Gradle plugins

nebula.provided-base

Create a provided configuration. Similar to providedCompile create by the war plugin.

https://github.com/nebula-plugins/gradle-extra-configurations-plugin

Version 4.0.1

Created 13 September 2018.

Plugins to add provided and optional configurations

Using the plugins DSL:

plugins {
  id("nebula.provided-base") version "4.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:gradle-extra-configurations-plugin:4.0.1")
  }
}

apply(plugin = "nebula.provided-base")

Using the plugins DSL:

plugins {
  id "nebula.provided-base" version "4.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:gradle-extra-configurations-plugin:4.0.1"
  }
}

apply plugin: "nebula.provided-base"

Learn how to apply plugins to subprojects