Search Gradle plugins

Version 0.1 (latest)

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"

Learn how to apply plugins to subprojects