Search Gradle plugins

Version 5.2.2

Created 21 July 2017.

A replacement for the legacy VoiceImportTools in MaryTTS

Using the plugins DSL:

plugins {
  id("de.dfki.mary.voicebuilding-data") version "5.2.2"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "de.dfki.mary.voicebuilding-data" version "5.2.2"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects