com.github.upthewaterspout.jpf
所有者: 丹·史密斯
用于自动下载和配置 Java Path Finder 的 gradle 项目的插件
https://github.com/upthewaterspout/jpf-gradle
源代码: https://github.com/upthewaterspout/jpf-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"