搜索Gradle插件

com.github.bjornvester.xjc

将XJC工具添加到您的项目中,用于生成XML模式(xsd文件)的Java源代码。与Gradle构建缓存兼容,并已测试与Java 8和11。请参阅GitHub项目页面以获取详细信息。

https://github.com/bjornvester/xjc-gradle-plugin

来源: https://github.com/bjornvester/xjc-gradle-plugin

版本 1.8.2(最新版)

1.8.2

创建于 2023年6月22日。

变更:- 修复了从sourcesJar到xsd的缺失任务依赖关系。

使用插件DSL

plugins {
  id("com.github.bjornvester.xjc") version "1.8.2"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.bjornvester:xjc-gradle-plugin:1.8.2")
  }
}

apply(plugin = "com.github.bjornvester.xjc")

使用插件DSL

plugins {
  id "com.github.bjornvester.xjc" version "1.8.2"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.bjornvester:xjc-gradle-plugin:1.8.2"
  }
}

apply plugin: "com.github.bjornvester.xjc"

了解如何将插件应用于子项目