com.mulesoft.mule-domain
用于构建 MuleESB 应用程序的 Gradle 插件,支持社区和企业版本。
https://github.com/mulesoft-labs/mule-gradle-plugin
源代码: https://github.com/mulesoft-labs/mule-gradle-plugin
使用 plugins DSL
plugins {
id("com.mulesoft.mule-domain") version "2.0.0-RC2"
}
使用 旧的插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.mulesoft.build:mule-gradle-plugin:2.0.0-RC2")
}
}
apply(plugin = "com.mulesoft.mule-domain")
使用 plugins DSL
plugins {
id "com.mulesoft.mule-domain" version "2.0.0-RC2"
}
使用 旧的插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.mulesoft.build:mule-gradle-plugin:2.0.0-RC2"
}
}
apply plugin: "com.mulesoft.mule-domain"