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

Add this plugin to your build using the plugins DSL:

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

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.3.0")
    }
    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.3.0")
      }
    }
    
    apply(plugin = "progress.openedge.abl-base")
  • Applying plugins to all subprojects .