com.brambolt.gradle.pathing
所有者: Brambolt
创建路径化JAR的Gradle插件。
https://github.com/brambolt/gradle-pathing
源代码:https://github.com/brambolt/gradle-pathing
使用插件DSL
plugins {
id("com.brambolt.gradle.pathing") version "2022.05.01-7057"
}
使用旧式插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.brambolt.gradle:brambolt-gradle-pathing:2022.05.01-7057")
}
}
apply(plugin = "com.brambolt.gradle.pathing")
使用插件DSL
plugins {
id "com.brambolt.gradle.pathing" version "2022.05.01-7057"
}
使用旧式插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.brambolt.gradle:brambolt-gradle-pathing:2022.05.01-7057"
}
}
apply plugin: "com.brambolt.gradle.pathing"