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.1.1

Created 18 October 2015.

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.1.1"
}

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.1.1")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.athaydes.ipojo"

Learn how to apply plugins to subprojects