org.akhikhl.wuff.swt-lib
Tool for assembling Eclipse applications and plugins
https://github.com/akhikhl/wuff
Version 0.0.10 (latest)
Created 28 June 2014.
No version description available.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.akhikhl.wuff.swt-lib") version "0.0.10"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.akhikhl.wuff.swt-lib:org.akhikhl.wuff.swt-lib.gradle.plugin:0.0.10") }
It can then be applied in the precompiled script plugin:plugins { id("org.akhikhl.wuff.swt-lib") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.akhikhl.wuff.swt-lib:org.akhikhl.wuff.swt-lib.gradle.plugin:0.0.10") } } apply(plugin = "org.akhikhl.wuff.swt-lib")
- Applying plugins to all subprojects .