Search Gradle plugins

Version 0.2.1

Created 15 April 2020.

Utility plugin to build MaryTTS components with Gradle

Using the plugins DSL:

plugins {
  id("de.dfki.mary.component") version "0.2.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.2.1")
  }
}

apply(plugin = "de.dfki.mary.component")

Using the plugins DSL:

plugins {
  id "de.dfki.mary.component" version "0.2.1"
}

Using legacy plugin application:

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

apply plugin: "de.dfki.mary.component"

Learn how to apply plugins to subprojects