progress.openedge.abl
Owner:
Progress Software
Create a Continuous Integration pipeline for your OpenEdge applications using OpenEdge DevOps Framework.
https://docs.progress.com/bundle/openedge-devops-framework
Sources: https://docs.progress.com/bundle/openedge-devops-framework
Version 2.2.1 (latest)
Created 26 April 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]
- 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]
Using the plugins DSL:
plugins {
id("progress.openedge.abl") version "2.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.progress.openedge:abl:2.2.1")
}
}
apply(plugin = "progress.openedge.abl")
Using the plugins DSL:
plugins {
id "progress.openedge.abl" version "2.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.progress.openedge:abl:2.2.1"
}
}
apply plugin: "progress.openedge.abl"