搜索Gradle插件

使用 插件DSL

plugins {
  id("us.ascendtech.gwt.modern") 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.modern")

使用 插件DSL

plugins {
  id "us.ascendtech.gwt.modern" 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.modern"

了解如何将插件应用到子项目中