Search code examples
javajavafxtext-to-speech

How to use maryTTS in Java (VSCode)?


I want to use MaryTTS, but in my project, i don't know how to add libs contain file .jar. I have dowloaded jars and put them in my pom file, them are incorrect. HELP MEEE, PLEASE !!

The way add libs have jars in pom file and how to run them.


Solution

  • Rollback everything you have done until now and add this to your pom.xml into the <dependencies> tag:

    <!-- https://mvnrepository.com/artifact/de.dfki.mary/marytts -->
    <dependency>
        <groupId>de.dfki.mary</groupId>
        <artifactId>marytts</artifactId>
        <version>5.2.1</version>
        <type>pom</type>
    </dependency>