搜索 Gradle 插件

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

版本 0.10.0 (最新版)

0.10.0

创建于 2017年2月25日。

未提供版本描述。

使用 插件 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"

了解如何将插件应用到子项目