io.freefair.war
Owner: Lars Grefer
Maven-like extensions for the normal war plugin
https://docs.freefair.io/gradle-plugins/8.10.2/reference/
Sources: https://github.com/freefair/gradle-plugins
Version 2.3.1
2.3.1
Created 26 February 2018.
Maven-like extensions for the normal war plugin
Using the plugins DSL:
plugins {
id("io.freefair.war") version "2.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.freefair.gradle:gradle-plugins:2.3.1")
}
}
apply(plugin = "io.freefair.war")
Using the plugins DSL:
plugins {
id "io.freefair.war" version "2.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.freefair.gradle:gradle-plugins:2.3.1"
}
}
apply plugin: "io.freefair.war"