earth.cube.commons
Owner: Necromancer
Plugin for common stuff like XML file modifications, etc.
https://github.com/Cube-Earth/GradlePlugins/tree/master/Root/cube-gradleplugins-commons
Sources: https://github.com/Cube-Earth/GradlePlugins/tree/master/Root/cube-gradleplugins-commons
Version 1.1.0 (latest)
1.1.0
Created 19 May 2019.
Plugin for common stuff like XML file modifications, etc.
Using the plugins DSL:
plugins {
id("earth.cube.commons") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.earth.cube.gradle.plugins:cube-gradleplugins-commons:1.1.0")
}
}
apply(plugin = "earth.cube.commons")
Using the plugins DSL:
plugins {
id "earth.cube.commons" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.earth.cube.gradle.plugins:cube-gradleplugins-commons:1.1.0"
}
}
apply plugin: "earth.cube.commons"