搜索Gradle插件

版本 0.5-SNAPSHOT(最新版)

0.5-SNAPSHOT

创建于2019年8月29日。

在它们官方支持之前,尝试使用Java 9模块。

使用插件DSL

plugins {
  id("rgoldberg.experimental-jigsaw") version "0.5-SNAPSHOT"
}

使用遗留插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.rgoldberg:experimental-jigsaw:0.5-SNAPSHOT")
  }
}

apply(plugin = "rgoldberg.experimental-jigsaw")

使用插件DSL

plugins {
  id "rgoldberg.experimental-jigsaw" version "0.5-SNAPSHOT"
}

使用遗留插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.rgoldberg:experimental-jigsaw:0.5-SNAPSHOT"
  }
}

apply plugin: "rgoldberg.experimental-jigsaw"

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