Search Gradle plugins

Version 2.5.1

Created 21 June 2021.

Gradle plugin to ease development with XSD's using the jaxb ant task

Using the plugins DSL:

plugins {
  id("com.github.seanrl.jaxb") version "2.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.seanrl:jaxb-plugin:2.5.1")
  }
}

apply(plugin = "com.github.seanrl.jaxb")

Using the plugins DSL:

plugins {
  id "com.github.seanrl.jaxb" version "2.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.seanrl:jaxb-plugin:2.5.1"
  }
}

apply plugin: "com.github.seanrl.jaxb"

Learn how to apply plugins to subprojects