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

Created 04 August 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 "23"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects