com.github.ngyewch.gradle-fjage-plugin
所有者: Nick Ng
基于Gradle的fjage开发插件。
https://github.com/ngyewch/gradle-fjage-plugin
源码:https://github.com/ngyewch/gradle-fjage-plugin.git
使用插件域DSL
plugins {
id("com.github.ngyewch.gradle-fjage-plugin") version "0.4.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.ngyewch.gradle-fjage-plugin:gradle-fjage-plugin:0.4.0")
}
}
apply(plugin = "com.github.ngyewch.gradle-fjage-plugin")
使用插件域DSL
plugins {
id "com.github.ngyewch.gradle-fjage-plugin" version "0.4.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.ngyewch.gradle-fjage-plugin:gradle-fjage-plugin:0.4.0"
}
}
apply plugin: "com.github.ngyewch.gradle-fjage-plugin"