Search Gradle plugins

com.ibm.cics.bundle

Owner: Ben Cox

A Gradle plugin to build CICS bundles, including external dependencies.

https://github.com/IBM/cics-bundle-gradle

Sources: https://github.com/IBM/cics-bundle-gradle

Version 1.0.7 (latest)

Created 16 October 2024.

A Gradle plugin to build CICS bundles, including external dependencies.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.ibm.cics.bundle") version "1.0.7"
}

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.ibm.cics.bundle:com.ibm.cics.bundle.gradle.plugin:1.0.7")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.ibm.cics.bundle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.ibm.cics.bundle:com.ibm.cics.bundle.gradle.plugin:1.0.7")
      }
    }
    
    apply(plugin = "com.ibm.cics.bundle")
  • Applying plugins to all subprojects .