-
Notifications
You must be signed in to change notification settings - Fork 740
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build an installer package as well as a live install below target -- …
…see new Run section in README.txt for details. git-svn-id: https://mary.opendfki.de/repos/branches/maven-branch@3020 953a6561-930b-0410-b2a6-db37d1b2ae63
- Loading branch information
Showing
48 changed files
with
258 additions
and
18 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,87 @@ | ||
<?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-assembly</artifactId> | ||
<packaging>pom</packaging> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>marytts-server</artifactId> | ||
<version>5.0-SNAPSHOT</version> | ||
<type>jar</type> | ||
<classifier>jar-with-dependencies</classifier> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>marytts-lang-de</artifactId> | ||
<version>5.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>marytts-lang-en</artifactId> | ||
<version>5.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>marytts-lang-te</artifactId> | ||
<version>5.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>marytts-lang-tr</artifactId> | ||
<version>5.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>marytts-lang-ru</artifactId> | ||
<version>5.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>voice-cmu-slt-hsmm</artifactId> | ||
<version>5.0-SNAPSHOT</version> | ||
</dependency> | ||
|
||
|
||
</dependencies> | ||
|
||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.2.1</version> | ||
<configuration> | ||
<finalName>${project.parent.artifactId}-${project.parent.version}</finalName> | ||
<outputDirectory>${project.parent.build.directory}</outputDirectory> | ||
<appendAssemblyId>false</appendAssemblyId> | ||
<descriptors> | ||
<descriptor>src/main/descriptors/runtime-dir.xml</descriptor> | ||
<descriptor>src/main/descriptors/runtime-pkg.xml</descriptor> | ||
</descriptors> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>make-assembly</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
|
||
</plugin> | ||
|
||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,14 @@ | ||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> | ||
<id>runtime-dir</id> | ||
<formats> | ||
<format>dir</format> | ||
</formats> | ||
|
||
<includeBaseDirectory>false</includeBaseDirectory> | ||
|
||
<componentDescriptors> | ||
<componentDescriptor>src/main/descriptors/runtime.xml</componentDescriptor> | ||
</componentDescriptors> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,17 @@ | ||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> | ||
<id>runtime-pkg</id> | ||
<formats> | ||
<format>tar.gz</format> | ||
<!--format>tar.bz2</format--> | ||
<format>zip</format> | ||
</formats> | ||
|
||
<includeBaseDirectory>true</includeBaseDirectory> | ||
<baseDirectory>${project.parent.build.finalName}</baseDirectory> | ||
|
||
<componentDescriptors> | ||
<componentDescriptor>src/main/descriptors/runtime.xml</componentDescriptor> | ||
</componentDescriptors> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,51 @@ | ||
<component xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/component/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/component/1.1.2 http://maven.apache.org/xsd/component-1.1.2.xsd"> | ||
|
||
<fileSets> | ||
<!-- Files from the parent project --> | ||
<fileSet> | ||
<directory>${project.basedir}/..</directory> | ||
<outputDirectory>/</outputDirectory> | ||
<includes> | ||
<include>LICENSE*</include> | ||
<include>gpl-3.0.txt</include> | ||
<include>lgpl-3.0.txt</include> | ||
<include>lib/voices/**/*</include> | ||
<include>user-dictionaries/*</include> | ||
</includes> | ||
</fileSet> | ||
<!-- General, non-executable files for release --> | ||
<fileSet> | ||
<directory>src/release</directory> | ||
<outputDirectory>/</outputDirectory> | ||
<includes> | ||
<include>README*</include> | ||
<include>doc/examples/**/*</include> | ||
</includes> | ||
</fileSet> | ||
|
||
<!-- Executable scripts: --> | ||
<fileSet> | ||
<directory>src/release</directory> | ||
<outputDirectory>/</outputDirectory> | ||
<includes> | ||
<include>bin/*</include> | ||
</includes> | ||
<fileMode>0755</fileMode> | ||
</fileSet> | ||
</fileSets> | ||
|
||
<dependencySets><!-- Copy over jar files --> | ||
<dependencySet> | ||
<useProjectArtifact>false</useProjectArtifact> | ||
<outputDirectory>/lib</outputDirectory> | ||
<unpack>false</unpack> | ||
<scope>runtime</scope> | ||
<includes> | ||
<include>${project.groupId}:marytts-server:jar:jar-with-dependencies</include> | ||
<include>${project.groupId}:marytts-lang-*</include> | ||
<include>${project.groupId}:voice-*</include> | ||
</includes> | ||
</dependencySet> | ||
</dependencySets> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,38 @@ | ||
#!/bin/bash | ||
########################################################################## | ||
# Copyright (C) 2000-2006 DFKI GmbH. | ||
# All rights reserved. Use is subject to license terms. | ||
# | ||
# Permission is hereby granted, free of charge, to use and distribute | ||
# this software and its documentation without restriction, including | ||
# without limitation the rights to use, copy, modify, merge, publish, | ||
# distribute, sublicense, and/or sell copies of this work, and to | ||
# permit persons to whom this work is furnished to do so, subject to | ||
# the following conditions: | ||
# | ||
# 1. The code must retain the above copyright notice, this list of | ||
# conditions and the following disclaimer. | ||
# 2. Any modifications must be clearly marked as such. | ||
# 3. Original authors' names are not deleted. | ||
# 4. The authors' names are not used to endorse or promote products | ||
# derived from this software without specific prior written | ||
# permission. | ||
# | ||
# DFKI GMBH AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ALL WARRANTIES WITH | ||
# REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF | ||
# MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DFKI GMBH NOR THE | ||
# CONTRIBUTORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL | ||
# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | ||
# PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS | ||
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | ||
# THIS SOFTWARE. | ||
########################################################################## | ||
# MARY TTS server | ||
########################################################################## | ||
|
||
# Set the Mary base installation directory in an environment variable: | ||
BINDIR="`dirname "$0"`" | ||
export MARY_BASE="`(cd "$BINDIR"/.. ; pwd)`" | ||
|
||
|
||
java -showversion -ea -Xms40m -Xmx1g -cp "$MARY_BASE/lib/*" -Dmary.base="$MARY_BASE" $* marytts.server.Mary |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters