com.intershop.gradle.component.build
Owner: M.Raab
Gradle component plugin
https://github.com/IntershopCommunicationsAG/component-build-plugin
Sources: https://github.com/IntershopCommunicationsAG/component-build-plugin
Version 1.0.0-dev.8 (latest)
1.0.0-dev.8
Created 28 August 2018.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Gradle component plugin
Using the plugins DSL:
plugins {
id("com.intershop.gradle.component.build") version "1.0.0-dev.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.intershop.gradle.component.build:component-build-plugin:1.0.0-dev.8")
}
}
apply(plugin = "com.intershop.gradle.component.build")
Using the plugins DSL:
plugins {
id "com.intershop.gradle.component.build" version "1.0.0-dev.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.intershop.gradle.component.build:component-build-plugin:1.0.0-dev.8"
}
}
apply plugin: "com.intershop.gradle.component.build"