Search Gradle plugins

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.3

Created 11 November 2014.

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.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.swisstech:gradle-dropwizard:1.1.3")
  }
}

apply(plugin = "net.swisstech.dropwizard")

Using the plugins DSL:

plugins {
  id "net.swisstech.dropwizard" version "1.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.swisstech:gradle-dropwizard:1.1.3"
  }
}

apply plugin: "net.swisstech.dropwizard"

Learn how to apply plugins to subprojects