Search Gradle plugins

net.the_deadmans.waroverlay

A plugin for gradle to provide functionality similar to the war overlay function in maven.

https://github.com/hdeadman/gradle-waroverlay-plugin

Sources: https://github.com/hdeadman/gradle-waroverlay-plugin.git

Version 0.9.5-SNAPSHOT (latest)

Created 10 July 2019.

A plugin for gradle to provide functionality similar to the war overlay function in maven.

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.the_deadmans.waroverlay") version "0.9.5-SNAPSHOT"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("net.the_deadmans.waroverlay:net.the_deadmans.waroverlay.gradle.plugin:0.9.5-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("net.the_deadmans.waroverlay")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.the_deadmans.waroverlay:net.the_deadmans.waroverlay.gradle.plugin:0.9.5-SNAPSHOT")
      }
    }
    
    apply(plugin = "net.the_deadmans.waroverlay")
  • Applying plugins to all subprojects .