Search Gradle plugins

Version 0.0.11 (latest)

0.0.11

Created 08 June 2019.

A gradle plugin to help creating a custom WildFly Feature Pack

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.wildfly.build.featurepack") version "0.0.11"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.wildfly.build:wildfly-gradle-tools:0.0.11")
      }
    }
    
    apply(plugin = "org.wildfly.build.featurepack")
  • Applying plugins to all subprojects .