com.github.gradlecommunity.jaxb2
所有者: Alex Nordlund
从 XML 架构文件生成 Java 源代码的插件。
https://github.com/GradleUp/jaxb2
源代码: https://github.com/gradle-community/jaxb2
使用 插件 DSL
plugins {
id("com.github.gradlecommunity.jaxb2") version "3.1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.gradlecommunity.jaxb2:jaxb2:3.1.0")
}
}
apply(plugin = "com.github.gradlecommunity.jaxb2")
使用 插件 DSL
plugins {
id "com.github.gradlecommunity.jaxb2" version "3.1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.gradlecommunity.jaxb2:jaxb2:3.1.0"
}
}
apply plugin: "com.github.gradlecommunity.jaxb2"