Search Gradle plugins

de.phillippartsch.ix-osgi-deploy

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 23.1 (latest)

Created 15 January 2024.

DEPRECATED: Please refer to https://plugins.gradle.org/plugin/de.phillippartsch.ix-osgi

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects