io.github.jamesfchen.foundation-plugin
所有者: electrolytej
foundation-plugin
https://github.com/JamesfChen/bundles-assembler
来源: https://github.com/JamesfChen/bundles-assembler
使用 插件DSL
plugins {
id("io.github.jamesfchen.foundation-plugin") version "1.7.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.jamesfchen:bundles-assembler-plugin:1.7.1")
}
}
apply(plugin = "io.github.jamesfchen.foundation-plugin")
使用 插件DSL
plugins {
id "io.github.jamesfchen.foundation-plugin" version "1.7.1"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.jamesfchen:bundles-assembler-plugin:1.7.1"
}
}
apply plugin: "io.github.jamesfchen.foundation-plugin"