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.10.0 (latest)
0.10.0
Created 25 February 2017.
No version description available.
Using the plugins DSL:
plugins {
id("com.github.mamohr.jboss-deployment-structure") version "0.10.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.10.0")
}
}
apply(plugin = "com.github.mamohr.jboss-deployment-structure")
Using the plugins DSL:
plugins {
id "com.github.mamohr.jboss-deployment-structure" version "0.10.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.mamohr.gradle:jboss-deployment-structure:0.10.0"
}
}
apply plugin: "com.github.mamohr.jboss-deployment-structure"