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/
Version 1.0.0-rc.1
Created 13 December 2020.
View the project's changelog for any notable changes.
Using the plugins DSL:
plugins {
id("io.mateo.cxf-codegen") version "1.0.0-rc.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.mateo:cxf-codegen-gradle:1.0.0-rc.1")
}
}
apply(plugin = "io.mateo.cxf-codegen")
Using the plugins DSL:
plugins {
id "io.mateo.cxf-codegen" version "1.0.0-rc.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.mateo:cxf-codegen-gradle:1.0.0-rc.1"
}
}
apply plugin: "io.mateo.cxf-codegen"