搜索Gradle插件

版本 1.2.0 (最新)

1.2.0

创建于 2023年12月28日。

GWT 库 Gradle 插件

使用 plugins DSL

plugins {
  id("de.esoco.gwt-lib") version "1.2.0"
}

使用 旧插件应用程序

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

apply(plugin = "de.esoco.gwt-lib")

使用 plugins DSL

plugins {
  id "de.esoco.gwt-lib" version "1.2.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.esoco.gwt:gwt-gradle-plugin:1.2.0"
  }
}

apply plugin: "de.esoco.gwt-lib"

学习如何应用插件到子项目中