Search Gradle plugins

Version 1.2.1 (latest)

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"

Learn how to apply plugins to subprojects