Search Gradle plugins

bue.akhikhl.wuff.eclipse-bundle

Owner: bue li

Gradle plugin for developing and assembling Eclipse applications and plugins

https://github.com/bueli/wuff

Sources: github.com:bueli/wuff

Version 0.0.3 (latest)

Created 15 June 2018.

Gradle plugin for developing and assembling Eclipse applications and plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("bue.akhikhl.wuff.eclipse-bundle") version "0.0.3"
}

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("bue.akhikhl.wuff.eclipse-bundle:bue.akhikhl.wuff.eclipse-bundle.gradle.plugin:0.0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("bue.akhikhl.wuff.eclipse-bundle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("bue.akhikhl.wuff.eclipse-bundle:bue.akhikhl.wuff.eclipse-bundle.gradle.plugin:0.0.3")
      }
    }
    
    apply(plugin = "bue.akhikhl.wuff.eclipse-bundle")
  • Applying plugins to all subprojects .