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
Sources: 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).
Add this plugin to your build using the plugins DSL:
plugins {
id("progress.openedge.abl-base") version "2.1.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("progress.openedge.abl-base:progress.openedge.abl-base.gradle.plugin:2.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("progress.openedge.abl-base") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("progress.openedge.abl-base:progress.openedge.abl-base.gradle.plugin:2.1.1") } } apply(plugin = "progress.openedge.abl-base")
- Applying plugins to all subprojects .