Search Gradle plugins

Version 2.1.0

Created 21 April 2022.

Added dependency resolution and management support to manage Procedure Library (PL) file dependencies.

Using the plugins DSL:

plugins {
  id("progress.openedge.abl") version "2.1.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "progress.openedge.abl" version "2.1.0"
}

Using legacy plugin application:

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

apply plugin: "progress.openedge.abl"

Learn how to apply plugins to subprojects