com.mulesoft.mule-agent
Gradle Plugin for building MuleESB Applications, both community and enterprise.
https://github.com/mulesoft-labs/mule-gradle-plugin
Sources: https://github.com/mulesoft-labs/mule-gradle-plugin
Version 2.0.0-RC2 (latest)
2.0.0-RC2
Created 26 September 2015.
Gradle Plugin for building MuleESB Applications, both community and enterprise.
Using the plugins DSL:
plugins {
id("com.mulesoft.mule-agent") version "2.0.0-RC2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.mulesoft.build:mule-gradle-plugin:2.0.0-RC2")
}
}
apply(plugin = "com.mulesoft.mule-agent")
Using the plugins DSL:
plugins {
id "com.mulesoft.mule-agent" version "2.0.0-RC2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.mulesoft.build:mule-gradle-plugin:2.0.0-RC2"
}
}
apply plugin: "com.mulesoft.mule-agent"