Search Gradle plugins

Version 1.0.1

Created 15 April 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.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects