tts-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>tts-common</artifactId> <version>6.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>modules-parent</artifactId> <version>1.14.19</version> <relativePath>../../parent</relativePath> </parent> <version>6.0.0</version> <artifactId>tts-common</artifactId> <packaging>bundle</packaging> <name>DAISY Pipeline 2 module :: TTS API</name> <description>Common API for TTS functionality and utility Java functions and XProc steps</description> <dependencies> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>com.xmlcalabash</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>common-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>calabash-adapter</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>webservice</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>saxon-he</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>audio-common</artifactId> </dependency> <!-- runtime dependencies --> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>common-utils</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>fileset-utils</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>file-utils</artifactId> <scope>runtime</scope> </dependency> <!-- test dependencies --> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>nlp-omnilang-lexer</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>1.5</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <expose-services> org.daisy.pipeline.tts.TTSRegistry, org.daisy.pipeline.tts.calabash.impl.GetAnnotationsProvider, org.daisy.pipeline.tts.calabash.impl.GetLexiconsProvider, org.daisy.pipeline.tts.calabash.impl.SynthesizeProvider, org.daisy.pipeline.tts.impl.VoicesWebServiceExtension, org.daisy.pipeline.modules.impl.Module_tts_common </expose-services> </properties> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Import-Package> net.sf.saxon.*;version="${saxon.versionRange}", !org.daisy.common.spi, * </Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.daisy.pipeline.build</groupId> <artifactId>ds-to-spi-maven-plugin</artifactId> <executions> <execution> <id>generate-spi-test-classes</id> <phase>process-test-sources</phase> <goals> <goal>generate-spi-test-classes</goal> </goals> <configuration> <includes> MockEncoder, MockTTS </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <org.daisy.pipeline.tts.config>${project.baseUri}target/test-classes/tts-default-config.xml</org.daisy.pipeline.tts.config> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>module-with-documentation</id> <activation> <property> <name>documentation</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.daisy.pipeline.build</groupId> <artifactId>modules-build-helper</artifactId> <executions> <execution> <id>package-list</id> <phase>prepare-package</phase> <goals> <goal>dependencies-package-list</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/dependencies-package-list/</outputDirectory> <includes> org.daisy.pipeline.*, org.daisy.common.* </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <offlineLinks> <offlineLink> <url>http://daisy.github.io/pipeline/api/</url> <location>${project.build.directory}/dependencies-package-list/</location> </offlineLink> </offlineLinks> <links> <link>https://google.github.io/guava/releases/15.0/api/docs</link> </links> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>