Search Gradle plugins

Version 1.2.0

Created 07 March 2023.

Gradle plugin to generate code sources from WSDL.

Using the plugins DSL:

plugins {
  id("io.mateo.cxf-codegen") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.mateo:cxf-codegen-gradle:1.2.0")
  }
}

apply(plugin = "io.mateo.cxf-codegen")

Using the plugins DSL:

plugins {
  id "io.mateo.cxf-codegen" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.mateo:cxf-codegen-gradle:1.2.0"
  }
}

apply plugin: "io.mateo.cxf-codegen"

Learn how to apply plugins to subprojects