de.dfki.mary.component
Owner: Ingmar Steiner
Utility plugin to build MaryTTS components with Gradle
https://github.com/marytts/gradle-marytts-component-plugin
Sources: https://github.com/marytts/gradle-marytts-component-plugin
Version 0.2
0.2
Created 10 April 2020.
Utility plugin to build MaryTTS components with Gradle
Using the plugins DSL:
plugins {
id("de.dfki.mary.component") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.dfki.mary:gradle-marytts-component-plugin:0.2")
}
}
apply(plugin = "de.dfki.mary.component")
Using the plugins DSL:
plugins {
id "de.dfki.mary.component" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.dfki.mary:gradle-marytts-component-plugin:0.2"
}
}
apply plugin: "de.dfki.mary.component"