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)
Created 03 April 2018.
Gradle Plugin for working with Azure ARM templates
Add this plugin to your build using the plugins DSL:
plugins {
id("com.intershop.gradle.plugin.azure") version "0.9.3-LOCAL"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.intershop.gradle.plugin.azure:com.intershop.gradle.plugin.azure.gradle.plugin:0.9.3-LOCAL") }
It can then be applied in the precompiled script plugin:plugins { id("com.intershop.gradle.plugin.azure") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.intershop.gradle.plugin.azure:com.intershop.gradle.plugin.azure.gradle.plugin:0.9.3-LOCAL") } } apply(plugin = "com.intershop.gradle.plugin.azure")
- Applying plugins to all subprojects .