io.github.dwarfley.eclipse-plus
所有者: Niklas Johansson
“eclipse plus”插件扩展了标准eclipse插件的功能。
https://github.com/Dwarfley/GradleEclipsePlus
来源:https://github.com/Dwarfley/GradleEclipsePlus
使用plugins DSL
plugins {
id("io.github.dwarfley.eclipse-plus") version "0.1.3"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.dwarfley:gradle-eclipse-plus:0.1.3")
}
}
apply(plugin = "io.github.dwarfley.eclipse-plus")
使用plugins DSL
plugins {
id "io.github.dwarfley.eclipse-plus" version "0.1.3"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.dwarfley:gradle-eclipse-plus:0.1.3"
}
}
apply plugin: "io.github.dwarfley.eclipse-plus"