搜索Gradle插件

版本 0.10.7 (最新)

0.10.7

创建于 2023年6月26日。

使用Saxon运行XSLT转换的Gradle插件

使用插件DSL

plugins {
  id("com.nwalsh.gradle.saxon.saxon-gradle") version "0.10.7"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.nwalsh.gradle.saxon:saxon-gradle:0.10.7")
  }
}

apply(plugin = "com.nwalsh.gradle.saxon.saxon-gradle")

使用插件DSL

plugins {
  id "com.nwalsh.gradle.saxon.saxon-gradle" version "0.10.7"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.nwalsh.gradle.saxon:saxon-gradle:0.10.7"
  }
}

apply plugin: "com.nwalsh.gradle.saxon.saxon-gradle"

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