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 1.5.5-startLevel
1.5.5-startLevel
Created 19 October 2017.
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 "1.5.5-startLevel"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.athaydes.gradle.osgi:osgi-run-core:1.5.5-startLevel")
}
}
apply(plugin = "com.athaydes.osgi-run")
Using the plugins DSL:
plugins {
id "com.athaydes.osgi-run" version "1.5.5-startLevel"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.athaydes.gradle.osgi:osgi-run-core:1.5.5-startLevel"
}
}
apply plugin: "com.athaydes.osgi-run"