us.ascendtech.gwt.lib
Owner: Matthew Davis
Plugin for gwt lib projects
https://github.com/ascendtech/gwt-gradle
Sources: https://github.com/ascendtech/gwt-gradle
Using the plugins DSL:
plugins {
id("us.ascendtech.gwt.lib") version "0.8.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.us.ascendtech:gwt-gradle:0.8.12")
}
}
apply(plugin = "us.ascendtech.gwt.lib")
Using the plugins DSL:
plugins {
id "us.ascendtech.gwt.lib" version "0.8.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.us.ascendtech:gwt-gradle:0.8.12"
}
}
apply plugin: "us.ascendtech.gwt.lib"