Search Gradle plugins

Version 0.1.0

Created 25 November 2020.

Create a Continuous Integration pipeline for your OpenEdge applications using OpenEdge DevOps Framework.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "progress.openedge.abl-base" version "0.1.0"
}

Using legacy plugin application:

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

apply plugin: "progress.openedge.abl-base"

Learn how to apply plugins to subprojects