remote-meeting
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.cognitiveservices.speech.remotemeeting</groupId> <artifactId>remote-meeting</artifactId> <version>1.31.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> <groupId>com.microsoft.cognitiveservices.speech.remotemeeting</groupId> <artifactId>remote-meeting</artifactId> <version>1.31.0</version> <packaging>jar</packaging> <name>Microsoft Cognitive Services Speech Remote meeting SDK for Java</name> <description> This SDK allows you to use the Microsoft Cognitive Speech Service for remote meeting. See https://aka.ms/csspeech for more information. </description> <url>https://aka.ms/csspeech</url> <licenses> <license> <name>Microsoft Software License Terms for Microsoft Cognitive Services Speech SDK</name> <url>https://aka.ms/csspeech/license</url> </license> </licenses> <scm> <connection>scm:git@github.com/Azure-Samples/cognitive-services-speech-sdk.git</connection> <url>https://github.com/Azure-Samples/cognitive-services-speech-sdk</url> </scm> <developers> <developer> <name>Cognitive Services Speech</name> <email>cssnuget@microsoft.com</email> <organization>Microsoft</organization> <organizationUrl>https://github.com/Azure-Samples/cognitive-services-speech-sdk</organizationUrl> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <!-- {x-version-update;org.apache.maven.plugins:maven-compiler-plugin;external_dependency} --> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <!-- Configure the source plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <!-- {x-version-update;org.apache.maven.plugins:maven-source-plugin;external_dependency} --> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> <configuration> <outputDirectory>target</outputDirectory> </configuration> </execution> </executions> </plugin> <!-- Configure the javadoc plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <!-- {x-version-update;org.apache.maven.plugins:maven-javadoc-plugin;external_dependency} --> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <jarOutputDirectory>target</jarOutputDirectory> <source>8</source> <doctitle>Microsoft Cognitive Services Speech Remote meeting SDK for Java</doctitle> <windowtitle>Microsoft Cognitive Services Speech Remote meeting SDK for Java</windowtitle> <failOnError>false</failOnError> <linksource>false</linksource> <excludePackageNames>*Impl.java</excludePackageNames> <groups> <group> <title>Speech Remote meeting</title> <packages>com.microsoft.cognitiveservices.speech.remotemeeting*</packages> </group> </groups> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.microsoft.cognitiveservices.speech</groupId> <artifactId>client-sdk</artifactId> <version>1.31.0</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core</artifactId> <version>1.5.0</version> </dependency> <dependency> <groupId>com.azure</groupId> <artifactId>azure-core-http-netty</artifactId> <version>1.5.0</version> </dependency> </dependencies> <repositories> <repository> <id>maven-cognitiveservices-local-path</id> <name>Microsoft Cognitive Services Local Maven Repository</name> <url>file:///localplaceholder//maven//</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>central</id> <name>Default Repository</name> <layout>default</layout> <url>https://repo1.maven.org/maven2</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> </project>