Search Gradle plugins

Version 0.5.1

Created 11 April 2016.

Gradle plugin to generate Declarative Services XML files

Using the plugins DSL:

plugins {
  id("org.jayware.osgi-ds") version "0.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.jayware:gradle-osgi-ds:0.5.1")
  }
}

apply(plugin = "org.jayware.osgi-ds")

Using the plugins DSL:

plugins {
  id "org.jayware.osgi-ds" version "0.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.jayware:gradle-osgi-ds:0.5.1"
  }
}

apply plugin: "org.jayware.osgi-ds"

Learn how to apply plugins to subprojects