<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>net.apexes.wsonrpc</groupId>
		<artifactId>wsonrpc</artifactId>
		<version>3.3.3</version>
		<relativePath>../pom.xml</relativePath>
	</parent>
	<groupId>net.apexes.wsonrpc</groupId>
	<artifactId>wsonrpc-client</artifactId>
	<version>3.3.3</version>
	<name>wsonrpc-client</name>
	<description>JSON-RPC over websocket</description>
	<url>https://github.com/hedyn/wsonrpc</url>

	<dependencies>
		<!-- wsonrpc -->
		<dependency>
			<groupId>net.apexes.wsonrpc</groupId>
            <artifactId>wsonrpc-core</artifactId>
			<version>3.3.3</version>
		</dependency>
		
		<!-- tyrus-client -->
		<dependency>
			<groupId>org.glassfish.tyrus.bundles</groupId>
			<artifactId>tyrus-standalone-client-jdk</artifactId>
			<version>${version.tyrus}</version>
			<scope>provided</scope>
		</dependency>

		<!-- Java-WebSocket -->
		<dependency>
			<groupId>org.java-websocket</groupId>
			<artifactId>Java-WebSocket</artifactId>
			<version>${version.java-websocket}</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>

	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
		</license>
	</licenses>

	<developers>
		<developer>
			<name>hedyn</name>
			<email>hedyn@foxmail.com</email>
		</developer>
	</developers>

	<scm>
		<url>https://gitee.com/apexes/wsonrpc.git</url>
		<connection>scm:git:https://gitee.com/apexes/wsonrpc.git</connection>
		<developerConnection>scm:git:git@gitee.com:apexes/wsonrpc.git</developerConnection>
	</scm>
</project>