<!-- Copyright (c) Microsoft. All rights reserved.
	 Licensed under the MIT license. See LICENSE file in the project root for full license information.
-->
<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.microsoft.azure.iothub-java-client</groupId>
  <artifactId>websocket-transport-layer</artifactId>
  <version>0.1.0</version>
  <packaging>jar</packaging>
  <name>Websocket Transport Layer</name>
  <description>A Websocket Transport Layer for use with Proton-J (Version 0.15.0+)</description>
  <url>http://azure.github.io/azure-iot-sdks/</url>
  <developers>
    <developer>
      <id>microsoft</id>
      <name>Microsoft</name>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>http://opensource.org/licenses/MIT</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:Azure/azure-iot-sdks.git</connection>
    <developerConnection>scm:git:git@github.com:Azure/azure-iot-sdks.git</developerConnection>
    <url>https://github.com/Azure/azure-iot-sdks.git</url>
  </scm>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.apache.qpid</groupId>
      <artifactId>proton-j</artifactId>
      <version>[0.15.0,)</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>${junit-version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>${mockito-version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>