зеркало из https://github.com/mozilla/marytts.git
70 строки
2.0 KiB
XML
70 строки
2.0 KiB
XML
<?xml version="1.0"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>marytts</artifactId>
|
|
<groupId>marytts</groupId>
|
|
<version>5.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>marytts-transcription</artifactId>
|
|
<name>marytts-transcription</name>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>marytts</groupId>
|
|
<artifactId>marytts-common</artifactId>
|
|
<version>5.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>marytts</groupId>
|
|
<artifactId>marytts-signalproc</artifactId>
|
|
<version>5.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>marytts</groupId>
|
|
<artifactId>marytts-runtime</artifactId>
|
|
<version>5.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>marytts</groupId>
|
|
<artifactId>marytts-builder</artifactId>
|
|
<version>5.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.swinglabs</groupId>
|
|
<artifactId>swing-layout</artifactId>
|
|
<version>1.0.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.3.1</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addClasspath>true</addClasspath>
|
|
<mainClass>marytts.tools.transcription.TranscriptionGUI</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|