Search Gradle plugins

Version 2.2.2

Created 09 September 2016.

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

Using the plugins DSL:

plugins {
  id("org.openrepose.gradle.plugins.jaxb") version "2.2.2"
}

Using legacy plugin application:

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

apply(plugin = "org.openrepose.gradle.plugins.jaxb")

Using the plugins DSL:

plugins {
  id "org.openrepose.gradle.plugins.jaxb" version "2.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.openrepose:gradle-jaxb-plugin:2.2.2"
  }
}

apply plugin: "org.openrepose.gradle.plugins.jaxb"

Learn how to apply plugins to subprojects