Search Gradle plugins

Version 2.0 (latest)

Created 13 February 2022.

A Gradle plugin to make the development of modular applications using OSGi completely painless

Using the plugins DSL:

plugins {
  id("com.athaydes.osgi-ds") version "2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.athaydes.gradle.osgi:osgi-run-core:2.0")
  }
}

apply(plugin = "com.athaydes.osgi-ds")

Using the plugins DSL:

plugins {
  id "com.athaydes.osgi-ds" version "2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.athaydes.gradle.osgi:osgi-run-core:2.0"
  }
}

apply plugin: "com.athaydes.osgi-ds"

Learn how to apply plugins to subprojects