搜索Gradle插件

版本 1.0.13(最新版)

1.0.13

创建于2024年3月15日。

XSD Builder Gradle插件允许您从XML Schema (XSD) 文件生成Apache XMLBeans绑定。

使用 插件DSL

plugins {
  id("com.liferay.xsd.builder") version "1.0.13"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.liferay:gradle-plugins-xsd-builder:1.0.13")
  }
}

apply(plugin = "com.liferay.xsd.builder")

使用 插件DSL

plugins {
  id "com.liferay.xsd.builder" version "1.0.13"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-xsd-builder:1.0.13"
  }
}

apply plugin: "com.liferay.xsd.builder"

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