de.esoco.gwt-lib
拥有者: esoco GmbH
GWT Gradle 插件
https://github.com/esoco/gwt-gradle-plugin
资源: https://github.com/esoco/gwt-gradle-plugin.git
使用 plugins DSL
plugins {
id("de.esoco.gwt-lib") version "1.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("de.esoco.gwt:gwt-gradle-plugin:1.2.0")
}
}
apply(plugin = "de.esoco.gwt-lib")
使用 plugins DSL
plugins {
id "de.esoco.gwt-lib" version "1.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "de.esoco.gwt:gwt-gradle-plugin:1.2.0"
}
}
apply plugin: "de.esoco.gwt-lib"