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.3.1 (latest)
Created 22 January 2023.
Utility plugin to build MaryTTS components with Gradle
Using the plugins DSL:
plugins {
id("de.dfki.mary.component") version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.dfki.mary:gradle-marytts-component-plugin:0.3.1")
}
}
apply(plugin = "de.dfki.mary.component")
Using the plugins DSL:
plugins {
id "de.dfki.mary.component" version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.dfki.mary:gradle-marytts-component-plugin:0.3.1"
}
}
apply plugin: "de.dfki.mary.component"