Search Gradle plugins

com.github.jacobono.jaxb

Owner: Daniel

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

https://github.com/jacobono/gradle-jaxb-plugin

Version 1.3.5 (latest)

Created 10 January 2015.

Ant arg: line to arg: value to protect against paths with spaces for episode file locations

Moving all calls from .size to .size()

group id is changed to 'com.github.jacobono'

Using the plugins DSL:

plugins {
  id("com.github.jacobono.jaxb") version "1.3.5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.jacobono.jaxb" version "1.3.5"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects