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.2.1 (latest)
1.2.1
Created 23 April 2023.
Gradle plugin to generate code sources from WSDL.
The next major version and subsequent versions will only be published to the Maven Central Repository.
Using the plugins DSL:
plugins {
id("io.mateo.cxf-codegen") version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.mateo:cxf-codegen-gradle:1.2.1")
}
}
apply(plugin = "io.mateo.cxf-codegen")
Using the plugins DSL:
plugins {
id "io.mateo.cxf-codegen" version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.mateo:cxf-codegen-gradle:1.2.1"
}
}
apply plugin: "io.mateo.cxf-codegen"