fr.javatic.jboss-controller
Owner: Yann Le Moigne
Gradle plugin which allow deployment and configuration of JBoss AS 7.x (or EAP 6.x)
https://github.com/ylemoigne/gradle-jboss-controller
Add this plugin to your build using the plugins DSL:
plugins {
id("fr.javatic.jboss-controller") version "1.5"
}
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("fr.javatic.jboss-controller:fr.javatic.jboss-controller.gradle.plugin:1.5") }
It can then be applied in the precompiled script plugin:plugins { id("fr.javatic.jboss-controller") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fr.javatic.jboss-controller:fr.javatic.jboss-controller.gradle.plugin:1.5") } } apply(plugin = "fr.javatic.jboss-controller")
- Applying plugins to all subprojects .