com.cognifide.aem.tooling
Owner: Krystian Panek
Provides tasks like 'rcp', 'sync', 'vlt' for working with content using JCR File Vault.
https://github.com/Cognifide/gradle-aem-plugin
Sources: https://github.com/Cognifide/gradle-aem-plugin.git
Version 9.2.12 (latest)
9.2.12
Created 14 December 2019.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Provides tasks like 'rcp', 'sync', 'vlt' for working with content using JCR File Vault.
Using the plugins DSL:
plugins {
id("com.cognifide.aem.tooling") version "9.2.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.cognifide.gradle:aem-plugin:9.2.12")
}
}
apply(plugin = "com.cognifide.aem.tooling")
Using the plugins DSL:
plugins {
id "com.cognifide.aem.tooling" version "9.2.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.cognifide.gradle:aem-plugin:9.2.12"
}
}
apply plugin: "com.cognifide.aem.tooling"