搜索Gradle插件

oe.espresso.latte

所有者: Progress Software

弃用:被progress.openedge.abl替代

版本 0.3.1(最新版)

0.3.1

创建日期:2020年8月4日。

oe.espresso

使用 插件DSL

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

使用 legacy 插件应用

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

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

使用 插件DSL

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

使用 legacy 插件应用

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

apply plugin: "oe.espresso.latte"

学习如何将插件应用到子项目