net.winterly.dropwizard
Owner: Alex Shpak
Gradle plugin that creates dropwizard specific tasks
https://github.com/alex-shpak/dropwizard-gradle-plugin
Sources: https://github.com/alex-shpak/dropwizard-gradle-plugin
Version 1.0.4 (latest)
1.0.4
Created 28 January 2018.
Gradle plugin that creates dropwizard specific tasks
Using the plugins DSL:
plugins {
id("net.winterly.dropwizard") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.winterly.dropwizard:dropwizard:1.0.4")
}
}
apply(plugin = "net.winterly.dropwizard")
Using the plugins DSL:
plugins {
id "net.winterly.dropwizard" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.winterly.dropwizard:dropwizard:1.0.4"
}
}
apply plugin: "net.winterly.dropwizard"