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.2 (latest)
0.3.2
Created 16 February 2024.
Utility plugin to build MaryTTS components with Gradle
Using the plugins DSL:
plugins {
id("de.dfki.mary.component") version "0.3.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.3.2")
}
}
apply(plugin = "de.dfki.mary.component")
Using the plugins DSL:
plugins {
id "de.dfki.mary.component" version "0.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.dfki.mary:gradle-marytts-component-plugin:0.3.2"
}
}
apply plugin: "de.dfki.mary.component"