Search Gradle plugins

Version 2.3.0 (latest)

Created 27 December 2023.

Task types for creating deployable packages for PAS for OpenEdge Application
- Oear
- OEWar
- OESvcZip
- Oeds
- Paar

[Update]
- Handle 'ant-libs' dependencies in a better way
- Change default value of Validation-Policy to warn in APL task]
- Support for Gradle 8

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects