Search Gradle plugins

Version 0.4.1 (latest)

Created 09 March 2024.

Forced alignment based on MaryTTS, Kaldi, and MFA

Using the plugins DSL:

plugins {
  id("de.dfki.mary.voicebuilding.marytts-kaldi-mfa") version "0.4.1"
}

Using legacy plugin application:

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

apply(plugin = "de.dfki.mary.voicebuilding.marytts-kaldi-mfa")

Using the plugins DSL:

plugins {
  id "de.dfki.mary.voicebuilding.marytts-kaldi-mfa" version "0.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.dfki.mary:gradle-marytts-kaldi-mfa-plugin:0.4.1"
  }
}

apply plugin: "de.dfki.mary.voicebuilding.marytts-kaldi-mfa"

Learn how to apply plugins to subprojects