搜索Gradle插件

版本 2.5.4 (最新版)

2.5.4

创建于2023年3月16日。

Gradle插件,简化使用jaxb ant任务开发XSD

使用 插件DSL

plugins {
  id("com.github.seanrl.jaxb") version "2.5.4"
}

使用 旧版插件应用

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

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

使用 插件DSL

plugins {
  id "com.github.seanrl.jaxb" version "2.5.4"
}

使用 旧版插件应用

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

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

了解如何在子项目中应用插件