Version 0.7.5 (latest)
0.7.5
Created 01 September 2015.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Werval 0.7.5
Using the plugins DSL:
plugins {
id("io.werval.application") version "0.7.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.werval:io.werval.gradle:0.7.5")
}
}
apply(plugin = "io.werval.application")
Using the plugins DSL:
plugins {
id "io.werval.application" version "0.7.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.werval:io.werval.gradle:0.7.5"
}
}
apply plugin: "io.werval.application"