cz.msvab.gradle.activemq
Owner:
acuna
Gradle ActiveMQ plugin
https://github.com/msvab/gradle-activemq-plugin
Sources: https://github.com/msvab/gradle-activemq-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("cz.msvab.gradle.activemq") version "1.9.1"
}
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("cz.msvab.gradle.activemq:cz.msvab.gradle.activemq.gradle.plugin:1.9.1") }
It can then be applied in the precompiled script plugin:plugins { id("cz.msvab.gradle.activemq") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cz.msvab.gradle.activemq:cz.msvab.gradle.activemq.gradle.plugin:1.9.1") } } apply(plugin = "cz.msvab.gradle.activemq")
- Applying plugins to all subprojects .