<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.github.catalystcode</groupId>
    <artifactId>speechtotext-websockets-java</artifactId>
    <packaging>jar</packaging>
    <description>A Java implementation of the Bing Speech to Text API websocket protocol</description>
    <version>0.0.1</version>
    <name>SpeechToText-WebSockets-Java</name>
    <organization>
        <name>Partner Catalyst</name>
        <url>https://github.com/CatalystCode</url>
    </organization>
    <url>github.com/CatalystCode/SpeechToText-Websockets-Java</url>
    <licenses>
        <license>
            <name>MIT</name>
            <url>https://opensource.org/licenses/MIT</url>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:github.com/CatalystCode/SpeechToText-Websockets-Java</connection>
        <developerConnection>scm:git:git@github.com:CatalystCode/SpeechToText-Websockets-Java</developerConnection>
        <url>github.com/CatalystCode/SpeechToText-Websockets-Java</url>
    </scm>
    <developers>
        <developer>
            <id>c-w</id>
            <name>Clemens Wolff</name>
            <email>clewolff@microsoft.com</email>
            <url>http://github.com/c-w</url>
        </developer>
    </developers>
    <dependencies>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.17</version>
        </dependency>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20170516</version>
        </dependency>
        <dependency>
            <groupId>com.neovisionaries</groupId>
            <artifactId>nv-websocket-client</artifactId>
            <version>2.2</version>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>5.0.0-M4</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>