tts-adapter-osx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>tts-adapter-osx</artifactId> <version>3.0.2</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>tts-modules-parent</artifactId> <version>1.12.0</version> <relativePath>../../parent</relativePath> </parent> <version>3.0.2</version> <artifactId>tts-adapter-osx</artifactId> <packaging>bundle</packaging> <name>DAISY Pipeline 2 module :: TTS Adapter for MacOS X</name> <description>Implementation of the TTS API for Mac OS X Speech voices</description> <dependencies> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>tts-common</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>saxon-he</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Import-Package> net.sf.saxon.*;version="${saxon.versionRange}", * </Import-Package> <Service-Component>OSGI-INF/tts-service.xml</Service-Component> <Export-Package /> </instructions> </configuration> </plugin> </plugins> </build> </project>