Search Gradle plugins

de.phillippartsch.ix-osgi

This plugin is designed to upload, install and start a custom osgi bundle for the elo indexserver

https://gitlab.com/elo12/ix-osgi

Sources: https://gitlab.com/elo12/ix-osgi-deployer

Version 2.1 (latest)

Created 17 March 2024.

Plugin to compile, create manifest and deploy an osgi bundle for the elo indexserver

Using the plugins DSL:

plugins {
  id("de.phillippartsch.ix-osgi") version "2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.phillippartsch:ix-osgi:2.1")
  }
}

apply(plugin = "de.phillippartsch.ix-osgi")

Using the plugins DSL:

plugins {
  id "de.phillippartsch.ix-osgi" version "2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.phillippartsch:ix-osgi:2.1"
  }
}

apply plugin: "de.phillippartsch.ix-osgi"

Learn how to apply plugins to subprojects