Search Gradle plugins

Version 1.1.0

Created 07 May 2019.

For grails web apps. setups for shipping and also applies the war and org.grails.web-app. can publish wars to maven

Using the plugins DSL:

plugins {
  id("yakworks.grails-web") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.yakworks:gradle-plugins:1.1.0")
  }
}

apply(plugin = "yakworks.grails-web")

Using the plugins DSL:

plugins {
  id "yakworks.grails-web" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.yakworks:gradle-plugins:1.1.0"
  }
}

apply plugin: "yakworks.grails-web"

Learn how to apply plugins to subprojects