Search Gradle plugins

oe.espresso.latte

DEPRECATED: Replaced by progress.openedge.abl

Version 0.2.4

Created 26 February 2020.

oe.espresso

Using the plugins DSL:

plugins {
  id("oe.espresso.latte") version "0.2.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.oe.espresso:latte:0.2.4")
  }
}

apply(plugin = "oe.espresso.latte")

Using the plugins DSL:

plugins {
  id "oe.espresso.latte" version "0.2.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.oe.espresso:latte:0.2.4"
  }
}

apply plugin: "oe.espresso.latte"

Learn how to apply plugins to subprojects