搜索 Gradle 插件

版本 3.1.0(最新版)

3.1.0

创建日期:2021 年 2 月 9 日。

从 XML 架构文件生成 Java 源代码的插件。

使用 插件 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"

学习如何将插件应用于子项目