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.0.3
1.0.3
Created 26 December 2022.
Gradle port of the Apache CXF Code Generation Maven2 plugin (cxf-codegen-plugin).
Using the plugins DSL:
plugins {
id("io.mateo.cxf-codegen") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.mateo:cxf-codegen-gradle:1.0.3")
}
}
apply(plugin = "io.mateo.cxf-codegen")
Using the plugins DSL:
plugins {
id "io.mateo.cxf-codegen" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.mateo:cxf-codegen-gradle:1.0.3"
}
}
apply plugin: "io.mateo.cxf-codegen"