搜索Gradle插件

版本 2.3.0 (最新)

2.3.0

创建时间 2023年12月27日。

为OpenEdge应用程序PAS创建可部署包的任务类型 - Oear - OEWar - OESvcZip - Oeds - Paar [更新] - 以更好的方式处理'ant-libs'依赖项 - 将Validation-Policy的默认值更改为在APL任务中警告 - 支持Gradle 8

使用插件DSL

plugins {
  id("progress.openedge.abl-base") version "2.3.0"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("progress.openedge:abl:2.3.0")
  }
}

apply(plugin = "progress.openedge.abl-base")

使用插件DSL

plugins {
  id "progress.openedge.abl-base" version "2.3.0"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "progress.openedge:abl:2.3.0"
  }
}

apply plugin: "progress.openedge.abl-base"

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