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
使用 插件 DSL
plugins {
id("com.github.mamohr.jboss-deployment-structure") version "0.10.0"
}
使用 旧式插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.mamohr.gradle:jboss-deployment-structure:0.10.0")
}
}
apply(plugin = "com.github.mamohr.jboss-deployment-structure")
使用 插件 DSL
plugins {
id "com.github.mamohr.jboss-deployment-structure" version "0.10.0"
}
使用 旧式插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.mamohr.gradle:jboss-deployment-structure:0.10.0"
}
}
apply plugin: "com.github.mamohr.jboss-deployment-structure"