com.greenebeans.gwt-gradle-plugin
Owner: Sterling
Fork of de.richsource.gradle.plugins:gwt-gradle-plugin for Gradle 5.x
https://github.com/big-guy/gwt-gradle-plugin
Sources: https://github.com/big-guy/gwt-gradle-plugin
Version 0.1 (latest)
0.1
Created 15 January 2019.
Fork of de.richsource.gradle.plugins:gwt-gradle-plugin for Gradle 5.x
Using the plugins DSL:
plugins {
id("com.greenebeans.gwt-gradle-plugin") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.greenebeans.gwt:gwt-gradle-plugin:0.1")
}
}
apply(plugin = "com.greenebeans.gwt-gradle-plugin")
Using the plugins DSL:
plugins {
id "com.greenebeans.gwt-gradle-plugin" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.greenebeans.gwt:gwt-gradle-plugin:0.1"
}
}
apply plugin: "com.greenebeans.gwt-gradle-plugin"