com.twcable.cq-bundle
Owner: jdigger
A plugin that helps you work with OSGi bundles in Adobe CQ/AEM
https://github.com/TWCable/gradle-plugin-cq-bundle
Sources: https://github.com/TWCable/gradle-plugin-cq-bundle.git
Version 2.2.2 (latest)
2.2.2
Created 10 July 2017.
A plugin that helps you work with OSGi bundles in Adobe CQ/AEM
Using the plugins DSL:
plugins {
id("com.twcable.cq-bundle") version "2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.twcable.gradle:gradle-plugin-cq-bundle:2.2.2")
}
}
apply(plugin = "com.twcable.cq-bundle")
Using the plugins DSL:
plugins {
id "com.twcable.cq-bundle" version "2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.twcable.gradle:gradle-plugin-cq-bundle:2.2.2"
}
}
apply plugin: "com.twcable.cq-bundle"