net.hallatech.atg-runassembler
Owner: Warren Muller
Gradle wrapper plugin for the Oracle Commerce ATG runAssembler utility for assembling ATG EARs
https://github.com/hallatech/gradle-atg-runassembler
Sources: https://github.com/hallatech/gradle-atg-runassembler.git
Version 0.1 (latest)
0.1
Created 26 July 2018.
Gradle wrapper plugin for the Oracle Commerce ATG runAssembler utility for assembling ATG EARs
Using the plugins DSL:
plugins {
id("net.hallatech.atg-runassembler") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.hallatech:gradle-atg-runassembler:0.1")
}
}
apply(plugin = "net.hallatech.atg-runassembler")
Using the plugins DSL:
plugins {
id "net.hallatech.atg-runassembler" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.hallatech:gradle-atg-runassembler:0.1"
}
}
apply plugin: "net.hallatech.atg-runassembler"