搜索 Gradle 插件

版本 2.3.0(最新版)

2.3.0

创建于 2023 年 12 月 27 日。

PAS for OpenEdge 应用程序的部署包创建任务类型 - Oear - OEWar - OESvcZip - Oeds - Paar [更新] - 更好地处理 'ant-libs' 依赖 - 将验证策略的默认值更改为在 APL 任务中警告 - 支持 Gradle 8

使用 插件 DSL

plugins {
  id("progress.openedge.abl") 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")

使用 插件 DSL

plugins {
  id "progress.openedge.abl" 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"

了解如何将插件应用于子项目