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 15.4.8

15.4.8

Created 14 March 2022.

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 "15.4.8"
}

See also:

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