Search Gradle plugins

Version 16.0.0-beta2

Created 29 September 2022.

Adds support for building OSGi bundles.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.cognifide.aem.bundle") version "16.0.0-beta2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.cognifide.aem.bundle:com.cognifide.aem.bundle.gradle.plugin:16.0.0-beta2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.cognifide.aem.bundle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.cognifide.aem.bundle:com.cognifide.aem.bundle.gradle.plugin:16.0.0-beta2")
      }
    }
    
    apply(plugin = "com.cognifide.aem.bundle")
  • Applying plugins to all subprojects .