io.github.xjxlx.common
Owner: XTF
A collection of tool classes used to help develop plugins
https://github.com/xjxlx/plugins/blob/main/publish/README.md
Sources: https://github.com/xjxlx/plugins/tree/main/common
Using the plugins DSL:
plugins {
id("io.github.xjxlx.common") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.xjxlx:publish:1.0.2")
}
}
apply(plugin = "io.github.xjxlx.common")
Using the plugins DSL:
plugins {
id "io.github.xjxlx.common" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.xjxlx:publish:1.0.2"
}
}
apply plugin: "io.github.xjxlx.common"