tts-adapter-acapela
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>tts-adapter-acapela</artifactId> <version>3.1.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.11</version> <relativePath>../../../parent</relativePath> </parent> <version>3.1.0</version> <artifactId>tts-adapter-acapela</artifactId> <packaging>bundle</packaging> <name>DAISY Pipeline 2 module :: TTS Adapter for Acapela</name> <description>Implementation of the TTS API for Acapela Linux V7.300 and V8.0</description> <dependencies> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>saxon-he</artifactId> </dependency> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>tts-common</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <!-- includes jna 4.0.0 --> <groupId>org.daisy.libs</groupId> <artifactId>jnaerator</artifactId> </dependency> </dependencies> <properties> <expose-services> org.daisy.pipeline.tts.acapela.impl.AcapelaService </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> </plugins> </build> </project>