com.mulesoft.mulestudio
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 1.2.0 (latest)
Created 07 May 2015.
Gradle Plugin for building MuleESB Applications, both community and enterprise.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.mulesoft.mulestudio") version "1.2.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.mulesoft.mulestudio:com.mulesoft.mulestudio.gradle.plugin:1.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.mulesoft.mulestudio") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.mulesoft.mulestudio:com.mulesoft.mulestudio.gradle.plugin:1.2.0") } } apply(plugin = "com.mulesoft.mulestudio")
- Applying plugins to all subprojects .