<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>cyberdomo</artifactId>
    <groupId>it.cnr.isti.domoware.cyberdomo</groupId>
    <version>1.0.1</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <groupId>it.cnr.isti.domoware.cyberdomo</groupId>
  <artifactId>upnp-stack-jdk13</artifactId>
  <packaging>jar</packaging>
  <version>1.8.0</version>
  <name>CyberDomo UPnP Stack for JDK 1.3</name>
  <description>A pure Java Open Source implementation of the UPnP stack backported for JDK13</description>
  <url>http://sourceforge.net/projects/domoware/</url>

  <licenses>
  	<license>
  		<name>BSD</name>
  	</license>
  </licenses>
  
  <dependencies>
    <dependency>
      <groupId>net.sf.kxml</groupId>
      <artifactId>kxml2</artifactId>
      <version>2.1.8</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <target>1.3</target>
          <source>1.3</source>
        </configuration>
      </plugin>
    </plugins>
  </build> 

  <scm>
    <connection>scm:svn:svn://domoware.isti.cnr.it/CyberDomo/tags/upnp-stack-jdk13-1.8.0</connection>
    <developerConnection>scm:svn:svn://domoware.isti.cnr.it/CyberDomo/tags/upnp-stack-jdk13-1.8.0</developerConnection>
  </scm>
</project>