搜索 Gradle 插件

版本 0.1(最新版)

0.1

创建于 2018 年 7 月 26 日。

Oracle Commerce ATG 运行汇编器的 Gradle 包装器插件,用于汇编 ATG EAR

使用 插件 DSL

plugins {
  id("net.hallatech.atg-runassembler") version "0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.hallatech:gradle-atg-runassembler:0.1")
  }
}

apply(plugin = "net.hallatech.atg-runassembler")

使用 插件 DSL

plugins {
  id "net.hallatech.atg-runassembler" version "0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.hallatech:gradle-atg-runassembler:0.1"
  }
}

apply plugin: "net.hallatech.atg-runassembler"

学习如何将插件应用于子项目