搜索Gradle插件

版本 0.4.0 (最新)

0.4.0

创建于2022年1月16日。

可以使用Apache FOP渲染文档的插件。它还可以验证XML与XSD模式。

使用插件DSL

plugins {
  id("com.github.ramonwirsch.FopRenderer") version "0.4.0"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.ramonwirsch:fopRenderer:0.4.0")
  }
}

apply(plugin = "com.github.ramonwirsch.FopRenderer")

使用插件DSL

plugins {
  id "com.github.ramonwirsch.FopRenderer" version "0.4.0"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.ramonwirsch:fopRenderer:0.4.0"
  }
}

apply plugin: "com.github.ramonwirsch.FopRenderer"

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