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

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"

Learn how to apply plugins to subprojects