net.swisstech.dropwizard
Gradle plugin to start/stop dropwizard manually as well as part of a test task and build a runnable jar file
https://github.com/stackmagic/gradle-dropwizard
Version 1.1.11 (latest)
1.1.11
Created 15 February 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
Gradle plugin to start/stop dropwizard manually as well as part of a test task and build a runnable jar file
Using the plugins DSL:
plugins {
id("net.swisstech.dropwizard") version "1.1.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.swisstech:gradle-dropwizard:1.1.11")
}
}
apply(plugin = "net.swisstech.dropwizard")
Using the plugins DSL:
plugins {
id "net.swisstech.dropwizard" version "1.1.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.swisstech:gradle-dropwizard:1.1.11"
}
}
apply plugin: "net.swisstech.dropwizard"