de.phillippartsch.ix-osgi-deploy
Owner: Phillip Partsch
This plugin is designed to upload, install and start a custom osgi bundle for the elo indexserver
https://gitlab.com/elo12/ix-osgi-deployer
Sources: https://gitlab.com/elo12/ix-osgi-deployer
Version 20
20
Created 20 April 2023.
This plugin is designed to upload, install and start a custom osgi bundle for the elo indexserver
Using the plugins DSL:
plugins {
id("de.phillippartsch.ix-osgi-deploy") version "20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.phillippartsch:ix-osgi-deployer:20")
}
}
apply(plugin = "de.phillippartsch.ix-osgi-deploy")
Using the plugins DSL:
plugins {
id "de.phillippartsch.ix-osgi-deploy" version "20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.phillippartsch:ix-osgi-deployer:20"
}
}
apply plugin: "de.phillippartsch.ix-osgi-deploy"