Search Gradle plugins

com.athaydes.osgi-run

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

https://github.com/renatoathaydes/osgi-run

Sources: https://github.com/renatoathaydes/osgi-run

Version 1.3.0

Created 18 October 2015.

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

Using the plugins DSL:

plugins {
  id("com.athaydes.osgi-run") version "1.3.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.athaydes.osgi-run" version "1.3.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects