Search Gradle plugins

Version 0.4.0

Created 09 April 2016.

Gradle plugin to generate Declarative Services XML files

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects