<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>org.codehaus.mojo</groupId>
    <artifactId>webstart</artifactId>
    <version>1.0-beta-6</version>
  </parent>

  <artifactId>webstart-jnlp-servlet</artifactId>
  <name>MWEBSTART :: JNLP Servlet</name>
  <!--<version>1.0-7.0.02_ea_b02.2-SNAPSHOT</version>-->
  
  <description>JNLP Sample servlet that supports pack200 protocol. Taken from Sun's JDK sample/jnlp directory thanks to
    its permissive license.
  </description>
  <url>http:///jdk6.dev.java.net/</url>
  <licenses>
    <license>
      <name>BSD</name>
      <url>http://www.opensource.org/licenses/bsd-license.php</url>
      <distribution>repo</distribution>
      <comments>Although SDK 6.0 is not under the BSD license, this particular bit of the code is.</comments>
    </license>
  </licenses>
  <!--scm> available in source package inside a mustang snapshot.
    <connection />
    <developerConnection />
    <tag />
    <url />
  </scm-->
  <organization>
    <name>Sun Microsystems</name>
    <url>http://www.sun.com</url>
  </organization>

  <dependencies>

    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <scope>provided</scope>
    </dependency>
  </dependencies>

</project>