org.jayware.osgi-ds
Owner: Elmar Schug
Gradle plugin to generate Declarative Services XML files
https://github.com/jayware/gradle-osgi-ds
Sources: https://github.com/jayware/gradle-osgi-ds.git
Version 0.5.6 (latest)
0.5.6
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"