Search Gradle plugins

Version 1.0.2

Created 28 January 2018.

Gradle plugin that creates dropwizard specific tasks

Using the plugins DSL:

plugins {
  id("net.winterly.dropwizard") version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.winterly.dropwizard:dropwizard:1.0.2")
  }
}

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

Using the plugins DSL:

plugins {
  id "net.winterly.dropwizard" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.winterly.dropwizard:dropwizard:1.0.2"
  }
}

apply plugin: "net.winterly.dropwizard"

Learn how to apply plugins to subprojects