com.athaydes.osgi-run
Owner: Renato Athaydes
A Gradle plugin to make the development of modular applications using OSGi completely painless
https://github.com/renatoathaydes/osgi-run
Sources: https://github.com/renatoathaydes/osgi-run
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-run") 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-run")
Using the plugins DSL:
plugins {
id "com.athaydes.osgi-run" 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-run"