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.2.2
Created 26 June 2020.
                Utility plugin to build MaryTTS components with Gradle
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("de.dfki.mary.component") version "0.2.2"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("de.dfki.mary.component:de.dfki.mary.component.gradle.plugin:0.2.2") }It can then be applied in the precompiled script plugin:plugins { id("de.dfki.mary.component") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.dfki.mary.component:de.dfki.mary.component.gradle.plugin:0.2.2") } } apply(plugin = "de.dfki.mary.component")
- Applying plugins to all subprojects .