tts-adapter-azure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>tts-adapter-azure</artifactId> <version>1.1.1</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.26</version> <relativePath>../../../parent</relativePath> </parent> <version>1.1.1</version> <artifactId>tts-adapter-azure</artifactId> <packaging>bundle</packaging> <name>DAISY Pipeline 2 module :: TTS Adapter for Microsoft Azure Cognitive Speech Services</name> <description>Implementation of the TTS API for Microsoft Azure Cognitive Speech Services</description> <dependencies> <dependency> <groupId>org.daisy.pipeline.modules</groupId> <artifactId>tts-common</artifactId> </dependency> <dependency> <groupId>com.microsoft.cognitiveservices.speech</groupId> <artifactId>client-sdk</artifactId> </dependency> <dependency> <groupId>org.daisy.libs</groupId> <artifactId>saxon-he</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> </dependencies> <properties> <expose-services> org.daisy.pipeline.tts.azure.impl.AzureCognitiveSpeechService </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.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <org.daisy.pipeline.tts.azure.key>mykey</org.daisy.pipeline.tts.azure.key> <org.daisy.pipeline.tts.azure.region>westeurope</org.daisy.pipeline.tts.azure.region> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>