net.wooga.plugins-local
Owner: Manne Endres
this plugin provides tasks and basic setup for other plugins
https://wooga.github.io/atlas-plugins
Sources: https://github.com/wooga/atlas-plugins
Version 3.0.0-rc.2
3.0.0-rc.2
Created 18 January 2022.
this plugin provides tasks and basic setup for other plugins
Using the plugins DSL:
plugins {
id("net.wooga.plugins-local") version "3.0.0-rc.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:atlas-plugins:3.0.0-rc.2")
}
}
apply(plugin = "net.wooga.plugins-local")
Using the plugins DSL:
plugins {
id "net.wooga.plugins-local" version "3.0.0-rc.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:atlas-plugins:3.0.0-rc.2"
}
}
apply plugin: "net.wooga.plugins-local"