Search Gradle plugins

com.intershop.icm.cartridge.development

Owner: M.Raab

The development cartridge plugin applies all basic configurations and tasks of and development cartridge.

https://github.com/IntershopCommunicationsAG/icm-gradle-plugin

Sources: https://github.com/IntershopCommunicationsAG/icm-gradle-plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.intershop.icm.cartridge.development") version "1.6.1-dev3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.intershop.gradle.icm:icm-gradle-plugin:1.6.1-dev3")
      }
    }
    
    apply(plugin = "com.intershop.icm.cartridge.development")
  • Applying plugins to all subprojects .