com.athaydes.osgi-ds
Owner: Renato Athaydes
A Gradle plugin to assist in creating OSGi bundles using Declarative Services
https://github.com/renatoathaydes/osgi-run
Sources: https://github.com/renatoathaydes/osgi-run.git
Version 2.0 (latest)
2.0
Created 13 February 2022.
A Gradle plugin to make the development of modular applications using OSGi completely painless
Using the plugins DSL:
plugins {
id("com.athaydes.osgi-ds") version "2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.athaydes.gradle.osgi:osgi-run-core:2.0")
}
}
apply(plugin = "com.athaydes.osgi-ds")
Using the plugins DSL:
plugins {
id "com.athaydes.osgi-ds" version "2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.athaydes.gradle.osgi:osgi-run-core:2.0"
}
}
apply plugin: "com.athaydes.osgi-ds"