搜索 Gradle 插件

版本 0.3 (最新)

0.3

创建于 2017 年 8 月 25 日。

用于自动下载和配置 Java Path Finder 的 gradle 项目的插件

使用 插件 DSL

plugins {
  id("com.github.upthewaterspout.jpf") version "0.3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.upthewaterspout.jpfgradle:jpfgradle:0.3")
  }
}

apply(plugin = "com.github.upthewaterspout.jpf")

使用 插件 DSL

plugins {
  id "com.github.upthewaterspout.jpf" version "0.3"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.upthewaterspout.jpfgradle:jpfgradle:0.3"
  }
}

apply plugin: "com.github.upthewaterspout.jpf"

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