de.materna.cms.war-library
war-variant of Gradles java-library plugin which adds a providedApi configuration.
https://github.com/materna-se/cms-gradle-plugins/wiki
Sources: https://github.com/materna-se/cms-gradle-plugins
Version 3.9.1
Created 22 September 2025.
war-variant of Gradles java-library plugin which adds a providedApi configuration.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.materna.cms.war-library") version "3.9.1"
}
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("de.materna.cms.war-library:de.materna.cms.war-library.gradle.plugin:3.9.1") }It can then be applied in the precompiled script plugin:plugins { id("de.materna.cms.war-library") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.materna.cms.war-library:de.materna.cms.war-library.gradle.plugin:3.9.1") } } apply(plugin = "de.materna.cms.war-library") - Applying plugins to all subprojects .