com.intershop.gradle.plugin.azure
Owner: mark blume
Gradle Plugin for working with Azure ARM templates
https://github.com/IntershopCommunicationsAG/azurePlugin
Sources: https://github.com/IntershopCommunicationsAG/azurePlugin
Version 0.9.3-LOCAL (latest)
0.9.3-LOCAL
Created 03 April 2018.
Gradle Plugin for working with Azure ARM templates
Using the plugins DSL:
plugins {
id("com.intershop.gradle.plugin.azure") version "0.9.3-LOCAL"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.intershop.gradle.plugin.azure:azurePlugin:0.9.3-LOCAL")
}
}
apply(plugin = "com.intershop.gradle.plugin.azure")
Using the plugins DSL:
plugins {
id "com.intershop.gradle.plugin.azure" version "0.9.3-LOCAL"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.intershop.gradle.plugin.azure:azurePlugin:0.9.3-LOCAL"
}
}
apply plugin: "com.intershop.gradle.plugin.azure"