Search Gradle plugins

com.cognifide.aem.common

Provides AEM DSL / 'aem' extension to build script on which all other logic is based.

https://github.com/wttech/gradle-aem-plugin

Sources: https://github.com/Cognifide/gradle-aem-plugin.git

Version 9.2.7

9.2.7

Created 13 December 2019.

Provides AEM DSL / 'aem' extension to build script on which all other logic is based.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.cognifide.aem.common") version "9.2.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.cognifide.gradle:aem-plugin:9.2.7")
      }
    }
    
    apply(plugin = "com.cognifide.aem.common")
  • Applying plugins to all subprojects .