Search Gradle plugins

com.athaydes.ipojo

The Gradle IPojo Plugin IPojoizes your jars, making it really easy to benefit from IPojo in any Gradle project.

https://github.com/renatoathaydes/osgi-run/tree/master/ipojo-plugin

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

Version 1.2.0 (latest)

Created 24 January 2016.

The Gradle IPojo Plugin IPojoizes your jars, making it really easy to benefit from IPojo in any Gradle project.

Using the plugins DSL:

plugins {
  id("com.athaydes.ipojo") version "1.2.0"
}

Using legacy plugin application:

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

apply(plugin = "com.athaydes.ipojo")

Using the plugins DSL:

plugins {
  id "com.athaydes.ipojo" version "1.2.0"
}

Using legacy plugin application:

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

apply plugin: "com.athaydes.ipojo"

Learn how to apply plugins to subprojects