搜索 Gradle 插件

版本 0.1.4(最新版)

0.1.4

创建于 2018 年 6 月 14 日。

适用于现代 GWT 项目的插件

使用 插件 DSL

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

使用 旧插件应用程序

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

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

使用 插件 DSL

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

使用 旧插件应用程序

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

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

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