Search Gradle plugins

Version 1.0.1

Created 15 February 2021.

Fixed issue with '-h' option when using more than 5 database connections with 'ABLCompile'.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "progress.openedge.abl"

Learn how to apply plugins to subprojects