progress.openedge.abl-base
Owner:
Progress Software
Create a Continuous Integration pipeline for your OpenEdge applications using OpenEdge DevOps Framework.
https://docs.progress.com/bundle/openedge-devops-framework
Version 2.1.1
Created 31 October 2022.
Support for creation, update and extraction of `.apl` archive file (applicable from 12.7 onwards).
Using the plugins DSL:
plugins {
id("progress.openedge.abl-base") version "2.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.progress.openedge:abl:2.1.1")
}
}
apply(plugin = "progress.openedge.abl-base")
Using the plugins DSL:
plugins {
id "progress.openedge.abl-base" version "2.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.progress.openedge:abl:2.1.1"
}
}
apply plugin: "progress.openedge.abl-base"