us.ascendtech.gwt.dep
所有者: Matthew Davis
用于gwt依赖项目插件
https://github.com/ascendtech/gwt-gradle
源代码: https://github.com/ascendtech/gwt-gradle
使用plugins DSL
plugins {
id("us.ascendtech.gwt.dep") version "0.9.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.us.ascendtech:gwt-gradle:0.9.2")
}
}
apply(plugin = "us.ascendtech.gwt.dep")
使用plugins DSL
plugins {
id "us.ascendtech.gwt.dep" version "0.9.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.us.ascendtech:gwt-gradle:0.9.2"
}
}
apply plugin: "us.ascendtech.gwt.dep"