Search Gradle plugins

com.github.mamohr.jboss-deployment-structure

A gradle plugin that generates jboss-deployment-structure.xml based on the deploy configuration in the ear

https://github.com/mamohr/jboss-deployment-structure

Version 0.7.0

Created 15 January 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.github.mamohr.jboss-deployment-structure") version "0.7.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.mamohr.gradle:jboss-deployment-structure:0.7.0")
  }
}

apply(plugin = "com.github.mamohr.jboss-deployment-structure")

Using the plugins DSL:

plugins {
  id "com.github.mamohr.jboss-deployment-structure" version "0.7.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.mamohr.gradle:jboss-deployment-structure:0.7.0"
  }
}

apply plugin: "com.github.mamohr.jboss-deployment-structure"

Learn how to apply plugins to subprojects