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.0

Created 03 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.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects