Maven Repository - POM file for Network webstart-jnlp-servlet 1.0-6.0-02_ea_b02 1.0-6.0-02_ea_b02

Summary

JNLP Servlet.

JNLP Sample servlet that supports pack200 protocol. Taken from Sun's JDK sample/jnlp directory thanks to its permissive license..

Declaration

Here is the list of declaration for webstart-jnlp-servlet. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.codehaus.mojo.webstart</groupId>
   <artifactId>webstart-jnlp-servlet</artifactId>
   <version>1.0-6.0-02_ea_b02</version>
</dependency>

If you think this Maven repository POM file listing for webstart-jnlp-servlet is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:BSD
URL: http://www.opensource.org/licenses/bsd-license.php.





POM File Source

Here is the content of the POM file.

<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">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.codehaus.mojo.webstart</groupId>
    <artifactId>webstart</artifactId>
    <version>1.0-alpha-2</version>
  </parent>

  <artifactId>webstart-jnlp-servlet</artifactId>
  <packaging>jar</packaging>
  <name>JNLP Servlet</name>
  <version>1.0-6.0-02_ea_b02</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>
    <!-- Meaning we need at least SDK5.0 javaws libraries in the CLASSPATH -->
    <!--
    <dependency>
      <groupId>java</groupId>
      <artifactId>javaws</artifactId>
      <version>[1.5,)</version>
      <scope>provided</scope>
    </dependency>
    -->
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>[2.3,)</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>

  <!--reporting>
    <plugins>
      <plugin>
        <artifactId>maven-project-info-reports-plugin</artifactId>
        <version>2.0</version>
         <configuration>
            <checkoutDirectoryName>jnlp-servlet</checkoutDirectoryName>
          </configuration>
        </plugin>
    </plugins>
  </reporting-->

</project>