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)

1.0.7

Created 16 October 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.ibm.cics:cics-bundle-gradle:1.0.7")
  }
}

apply(plugin = "com.ibm.cics.bundle")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.ibm.cics:cics-bundle-gradle:1.0.7"
  }
}

apply plugin: "com.ibm.cics.bundle"

Learn how to apply plugins to subprojects