nebula.project
Owner: Nebula Plugins
Gradle plugin to setup a responsible Gradle project
https://github.com/nebula-plugins/nebula-project-plugin
Sources: https://github.com/nebula-plugins/nebula-project-plugin.git
Version 7.0.6
7.0.6
Created 23 January 2020.
Gradle plugin to setup a responsible Gradle project
Using the plugins DSL:
plugins {
id("nebula.project") version "7.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-project-plugin:7.0.6")
}
}
apply(plugin = "nebula.project")
Using the plugins DSL:
plugins {
id "nebula.project" version "7.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-project-plugin:7.0.6"
}
}
apply plugin: "nebula.project"