<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>
    <groupId>org.swinglabs</groupId>
    <artifactId>swingx-ws</artifactId>
    <packaging>jar</packaging>
    <name>SwingX-WS</name>
    <version>1.0</version>
    <url>http://www.swinglabs.org/</url>
    <licenses>
        <license>
            <name>Lesser General Public License (LGPL)</name>
            <url>http://www.gnu.org/copyleft/lesser.html</url>
        </license>
    </licenses>
    <issueManagement>
      <system>Bugzilla</system>
      <url>https://swingx-ws.dev.java.net/issues/</url>
    </issueManagement>
    <scm>
        <connection>scm:svn:https://swingx-ws.dev.java.net/svn/swingx-ws/trunk</connection>
        <developerConnection>scm:svn:https://swingx-ws.dev.java.net/svn/swingx-ws/trunk</developerConnection>
        <url>https://swingx-ws.dev.java.net/source/browse/swingx-ws/</url>
    </scm>
    <description>Set of utilities and widgets to simplify interaction of Swing based GUIs with the web applications of any kind.</description>
    <dependencies>
        <dependency>
            <groupId>jdom</groupId>
            <artifactId>jdom</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>commons-httpclient</groupId>
            <artifactId>commons-httpclient</artifactId>
            <version>3.0.1</version>
        </dependency>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1</version>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.3</version>
        </dependency>
        <dependency>
          <groupId>net.sf.json-lib</groupId>
          <artifactId>json-lib</artifactId>
          <version>0.9</version>
          <exclusions>
            <exclusion>
              <groupId>commons-logging</groupId>
              <artifactId>commons-logging</artifactId>
            </exclusion>
            <exclusion>
              <groupId>xerces</groupId>
              <artifactId>xercesImpl</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
            <groupId>xerces</groupId>
            <artifactId>xercesImpl</artifactId>
            <version>2.8.1</version>
        </dependency>
        <dependency>
            <groupId>jtidy</groupId>
            <artifactId>jtidy</artifactId>
            <version>4aug2000r7-dev</version>
        </dependency>
        <dependency>
            <groupId>rome</groupId>
            <artifactId>rome</artifactId>
            <version>0.8</version>
        </dependency>
    </dependencies>
    <distributionManagement>
        <repository>
            <id>swinglabs-releases</id>
            <name>SwingLabs Release Repository</name>
            <url>http://oss.sonatype.org/content/repositories/swinglabs-releases/</url>
        </repository>
        <snapshotRepository>
            <id>swinglabs-snapshots</id>
            <name>SwingLabs Snapshot Repository</name>
            <url>http://oss.sonatype.org/content/repositories/swinglabs-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>
    <build>    
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
    </build>
    <repositories>
        <repository>
            <id>swinglabs-snapshots</id>
            <url>http://oss.sonatype.org/content/repositories/swinglabs-snapshots/</url>
            <releases>
              <enabled>false</enabled>
            </releases>
            <snapshots>
              <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>
</project>
