Search Gradle plugins

Version 0.1.4 (latest)

Created 14 June 2018.

Plugin for modern GWT projects

Using the plugins DSL:

plugins {
  id("us.ascendtech.js.gwt") version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.us.ascendtech:gwt-gradle:0.1.4")
  }
}

apply(plugin = "us.ascendtech.js.gwt")

Using the plugins DSL:

plugins {
  id "us.ascendtech.js.gwt" version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.us.ascendtech:gwt-gradle:0.1.4"
  }
}

apply plugin: "us.ascendtech.js.gwt"

Learn how to apply plugins to subprojects