搜索 Gradle 插件

版本 5.4(最新版)

5.4

创建于 2018 年 12 月 12 日。

由于该插件仅使用 JCenter 中的依赖,当 JCenter 成为 Maven Central 的永久重定向后,此插件版本将不再处理。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 玛丽TTS中替代旧版 VoiceImportTools 的插件

使用 插件 DSL

plugins {
  id("de.dfki.mary.voicebuilding-festvox") version "5.4"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("de.dfki.mary:gradle-marytts-voicebuilding-plugin:5.4")
  }
}

apply(plugin = "de.dfki.mary.voicebuilding-festvox")

使用 插件 DSL

plugins {
  id "de.dfki.mary.voicebuilding-festvox" version "5.4"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.dfki.mary:gradle-marytts-voicebuilding-plugin:5.4"
  }
}

apply plugin: "de.dfki.mary.voicebuilding-festvox"

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