Search Gradle plugins

fr.javatic.jboss-controller

Gradle plugin which allow deployment and configuration of JBoss AS 7.x (or EAP 6.x)

https://github.com/ylemoigne/gradle-jboss-controller

Version 1.5 (latest)

Created 30 March 2015.

No version description available.

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 .