Search Gradle plugins

Version 0.5.6 (latest)

Created 07 March 2019.

Gradle plugin to generate Declarative Services XML files

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects