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 14.4.27

14.4.27

Created 03 December 2020.

Provides AEM DSL 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 "14.4.27"
}

See also:

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