<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/maven-v4_0_0.xsd">
	<parent>
		<artifactId>oss-parent</artifactId>
		<groupId>org.sonatype.oss</groupId>
		<version>7</version>
	</parent>
	<modelVersion>4.0.0</modelVersion>
  <groupId>com.netiq</groupId>
  <artifactId>websocket</artifactId>
  <packaging>jar</packaging>
  <name>Java WebSocket Library</name>
  <version>0.7</version>
  <description>A barebones WebSocket server and client implementation written in 100% Java, originally developed by Nathan Rajlich (nathan@tootallnate.net).</description>
  <url>https://github.com/jribble/Java-WebSocket</url>
  <licenses>
  	<license>
  		<name>The MIT License (MIT)</name>
  		<url>http://www.opensource.org/licenses/mit-license.php</url>
  		<distribution>repo</distribution>
  	</license>
  </licenses>
  <scm>
  	<connection>scm:git:git@github.com:jribble/Java-WebSocket.git</connection>
  	<url>scm:git:git@github.com:jribble/Java-WebSocket.git</url>
  	<developerConnection>scm:git:git@github.com:jribble/Java-WebSocket.git</developerConnection>
  </scm>
  <developers>
  	<developer>
  		<id>jribble</id>
  		<name>Jarrod Ribble</name>
  		<email>jribble@netiq.com</email>
  		<organization>NetIQ</organization>
  		<organizationUrl>http://www.netiq.com</organizationUrl>
  	</developer>
  </developers>
  <dependencies>
  </dependencies>
  <build>
  	<plugins>
  		<plugin>
  			<groupId>org.apache.maven.plugins</groupId>
  			<artifactId>maven-release-plugin</artifactId>
  			<version>2.0-beta-9</version>
  		</plugin>
  	</plugins>
  </build>
</project>