Search Gradle plugins

biz.aQute.bnd.workspace

Owner: Bndtools

Gradle Plugin for developing OSGi bundles with Bnd. Bnd is the premiere tool for creating OSGi bundles. This gradle plugin is from the team that develops Bnd and is used by the Bnd team to build Bnd itself. See https://github.com/bndtools/bnd/blob/3.4.0.REL/biz.aQute.bnd.gradle/README.md for information on using in a Bnd Workspace and a typical Gradle build.

https://github.com/bndtools/bnd

Sources: https://github.com/bndtools/bnd.git

Version 6.3.1

Created 07 June 2022.

Gradle Plugin for developing OSGi bundles with Bnd using the Bnd Workspace build. Bnd is the premiere tool for creating OSGi bundles. This Gradle plugin is from the team that develops Bnd and is used by the Bnd team to build Bnd itself. See https://github.com/bndtools/bnd/blob/6.3.1/gradle-plugins/README.md for information on using on a Bnd Workspace.

Using the plugins DSL:

plugins {
  id("biz.aQute.bnd.workspace") version "6.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("biz.aQute.bnd:biz.aQute.bnd.gradle:6.3.1")
  }
}

apply(plugin = "biz.aQute.bnd.workspace")

Using the plugins DSL:

plugins {
  id "biz.aQute.bnd.workspace" version "6.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "biz.aQute.bnd:biz.aQute.bnd.gradle:6.3.1"
  }
}

apply plugin: "biz.aQute.bnd.workspace"

Learn how to apply plugins to subprojects