com.github.jruby-gradle.war
拥有者: R. Tyler Croy
用于创建基于 JRuby 的 Web 存档的扩展
https://github.com/jruby-gradle/jruby-gradle-plugin
使用 扩展 DSL
plugins {
id("com.github.jruby-gradle.war") version "2.1.0-alpha.2"
}
使用 旧版扩展应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.jruby-gradle:jruby-gradle-war-plugin:2.1.0-alpha.2")
}
}
apply(plugin = "com.github.jruby-gradle.war")
使用 扩展 DSL
plugins {
id "com.github.jruby-gradle.war" version "2.1.0-alpha.2"
}
使用 旧版扩展应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.jruby-gradle:jruby-gradle-war-plugin:2.1.0-alpha.2"
}
}
apply plugin: "com.github.jruby-gradle.war"