bue.akhikhl.wuff.eclipse-bundle
Owner: bue li
Gradle plugin for developing and assembling Eclipse applications and plugins
Sources: github.com:bueli/wuff
Version 0.0.3 (latest)
0.0.3
Created 15 June 2018.
Gradle plugin for developing and assembling Eclipse applications and plugins
Using the plugins DSL:
plugins {
id("bue.akhikhl.wuff.eclipse-bundle") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.bue.akhikhl.wuff:wuff-plugin:0.0.3")
}
}
apply(plugin = "bue.akhikhl.wuff.eclipse-bundle")
Using the plugins DSL:
plugins {
id "bue.akhikhl.wuff.eclipse-bundle" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.bue.akhikhl.wuff:wuff-plugin:0.0.3"
}
}
apply plugin: "bue.akhikhl.wuff.eclipse-bundle"