版本 0.0.3 (最新版)
0.0.3
创建日期:2018 年 6 月 15 日。
Gradle 插件,用于开发和管理 Eclipse 应用程序和插件
使用 plugins DSL
plugins {
id("bue.akhikhl.wuff.eclipse-bundle") version "0.0.3"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.bue.akhikhl.wuff:wuff-plugin:0.0.3")
}
}
apply(plugin = "bue.akhikhl.wuff.eclipse-bundle")
使用 plugins DSL
plugins {
id "bue.akhikhl.wuff.eclipse-bundle" version "0.0.3"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.bue.akhikhl.wuff:wuff-plugin:0.0.3"
}
}
apply plugin: "bue.akhikhl.wuff.eclipse-bundle"