com.sap.csdltowar
Owner: Bata András
creates a war from csdl.xml file
https://github.com/abnagy/csdltowar
Sources: https://github.com/abnagy/csdltowar
Add this plugin to your build using the plugins DSL:
plugins {
id("com.sap.csdltowar") version "1.0.10"
}
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("com.sap.csdltowar:com.sap.csdltowar.gradle.plugin:1.0.10") }
It can then be applied in the precompiled script plugin:plugins { id("com.sap.csdltowar") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.sap.csdltowar:com.sap.csdltowar.gradle.plugin:1.0.10") } } apply(plugin = "com.sap.csdltowar")
- Applying plugins to all subprojects .