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
Using the plugins DSL:
plugins {
id("fr.javatic.jboss-controller") version "1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("fr.javatic.gradle:gradle-jboss-controller:1.5")
}
}
apply(plugin = "fr.javatic.jboss-controller")
Using the plugins DSL:
plugins {
id "fr.javatic.jboss-controller" version "1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "fr.javatic.gradle:gradle-jboss-controller:1.5"
}
}
apply plugin: "fr.javatic.jboss-controller"