搜索Gradle插件

版本 0.9.0-beta4 (最新版本)

0.9.0-beta4

创建于 2021年8月28日。

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

使用 plugins DSL

plugins {
  id("com.github.eerohele.saxon-gradle") version "0.9.0-beta4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.eerohele:saxon-gradle:0.9.0-beta4")
  }
}

apply(plugin = "com.github.eerohele.saxon-gradle")

使用 plugins DSL

plugins {
  id "com.github.eerohele.saxon-gradle" version "0.9.0-beta4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.eerohele:saxon-gradle:0.9.0-beta4"
  }
}

apply plugin: "com.github.eerohele.saxon-gradle"

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