io.mateo.cxf-codegen
Owner:
Francisco Mateo
View the project's changelog for any notable changes.
https://ciscoo.github.io/cxf-codegen-gradle/docs/current/user-guide/
Sources: https://github.com/ciscoo/cxf-codegen-gradle
Version 1.1.0
Created 26 February 2023.
Gradle plugin to generate code sources from WSDL.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.mateo.cxf-codegen") version "1.1.0"
}
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("io.mateo.cxf-codegen:io.mateo.cxf-codegen.gradle.plugin:1.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.mateo.cxf-codegen") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.mateo.cxf-codegen:io.mateo.cxf-codegen.gradle.plugin:1.1.0") } } apply(plugin = "io.mateo.cxf-codegen")
- Applying plugins to all subprojects .