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 5.5.1 (latest)
5.5.1
Created 30 August 2022.
Plugin for Intershop cross projekt development - necessary for integration development
Using the plugins DSL:
plugins {
id("com.intershop.icm.crossproject") version "5.5.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.intershop.gradle.icm:icm-gradle-plugin:5.5.1")
}
}
apply(plugin = "com.intershop.icm.crossproject")
Using the plugins DSL:
plugins {
id "com.intershop.icm.crossproject" version "5.5.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.intershop.gradle.icm:icm-gradle-plugin:5.5.1"
}
}
apply plugin: "com.intershop.icm.crossproject"