com.github.an3ll.wsdl2java
Owner: Joakim Anell
Generate java classes using wsdl2java and cxf
https://github.com/an3ll/wsdl2java
Sources: https://github.com/an3ll/wsdl2java
Version 0.14 (latest)
Created 13 April 2021.
Generate java classes using wsdl2java and cxf
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.an3ll.wsdl2java") version "0.14"
}
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.github.an3ll.wsdl2java:com.github.an3ll.wsdl2java.gradle.plugin:0.14") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.an3ll.wsdl2java") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.an3ll.wsdl2java:com.github.an3ll.wsdl2java.gradle.plugin:0.14") } } apply(plugin = "com.github.an3ll.wsdl2java")
- Applying plugins to all subprojects .