com.intershop.icm.crossproject
Owner: M.Raab
Plugin for Intershop cross projekt development - necessary for integration development
https://github.com/IntershopCommunicationsAG/icm-gradle-plugin
Sources: https://github.com/IntershopCommunicationsAG/icm-gradle-plugin
Version 3.5.12-SNAPSHOT
3.5.12-SNAPSHOT
Created 18 June 2021.
Plugin for Intershop cross projekt development - necessary for integration development
Using the plugins DSL:
plugins {
id("com.intershop.icm.crossproject") version "3.5.12-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.intershop.gradle.icm:icm-gradle-plugin:3.5.12-SNAPSHOT")
}
}
apply(plugin = "com.intershop.icm.crossproject")
Using the plugins DSL:
plugins {
id "com.intershop.icm.crossproject" version "3.5.12-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.intershop.gradle.icm:icm-gradle-plugin:3.5.12-SNAPSHOT"
}
}
apply plugin: "com.intershop.icm.crossproject"