wsdor/pom.xml
changeset 256 1758a7727278
child 258 935118a5831a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/wsdor/pom.xml	Sat Sep 11 17:04:51 2010 +0200
     1.3 @@ -0,0 +1,91 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     1.6 +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     1.7 +  <modelVersion>4.0.0</modelVersion>
     1.8 +  <parent>
     1.9 +    <artifactId>all-quoridor</artifactId>
    1.10 +    <groupId>cz.xelfi.quoridor</groupId>
    1.11 +    <version>1.0</version>
    1.12 +  </parent>
    1.13 +  <groupId>cz.xelfi.quoridor</groupId>
    1.14 +  <artifactId>wsdor</artifactId>
    1.15 +  <packaging>bundle</packaging>
    1.16 +  <version>${wsdorVersion}</version>
    1.17 +  <name>wsdor</name>
    1.18 +  <url>http://maven.apache.org</url>
    1.19 +    <build>
    1.20 +        <plugins>
    1.21 +            <plugin>
    1.22 +                <groupId>org.apache.felix</groupId>
    1.23 +                <artifactId>maven-bundle-plugin</artifactId>
    1.24 +                <version>2.0.1</version>
    1.25 +                <extensions>true</extensions>
    1.26 +                <configuration>
    1.27 +                    <instructions>
    1.28 +                        <Export-Package>cz.xelfi.quoridor.webidor</Export-Package>
    1.29 +                        <Private-Package>cz.xelfi.quoridor.webidor.*</Private-Package>
    1.30 +                    </instructions>
    1.31 +                </configuration>
    1.32 +            </plugin>
    1.33 +            <plugin>
    1.34 +                <groupId>org.apache.maven.plugins</groupId>
    1.35 +                <artifactId>maven-compiler-plugin</artifactId>
    1.36 +                <version>2.0.2</version>
    1.37 +                <configuration>
    1.38 +                    <source>1.5</source>
    1.39 +                    <target>1.5</target>
    1.40 +                </configuration>
    1.41 +            </plugin>
    1.42 +            <plugin>
    1.43 +                <groupId>org.apache.maven.plugins</groupId>
    1.44 +                <artifactId>maven-javadoc-plugin</artifactId>
    1.45 +                <version>2.5</version>
    1.46 +                <!--
    1.47 +                <configuration>
    1.48 +                    <excludePackageNames>org.netbeans.modules.openide.util</excludePackageNames>
    1.49 +                    <overview>${basedir}/src/main/java/org/openide/util/lookup/doc-files/index.html</overview>
    1.50 +                </configuration>
    1.51 +                -->
    1.52 +            </plugin>
    1.53 +        </plugins>
    1.54 +    </build>
    1.55 +  <dependencies>
    1.56 +    <dependency>
    1.57 +      <groupId>junit</groupId>
    1.58 +      <artifactId>junit</artifactId>
    1.59 +      <version>3.8.1</version>
    1.60 +      <scope>test</scope>
    1.61 +    </dependency>
    1.62 +    <dependency>
    1.63 +      <groupId>${project.groupId}</groupId>
    1.64 +      <artifactId>quoridor</artifactId>
    1.65 +      <version>${quoridorVersion}</version>
    1.66 +    </dependency>
    1.67 +    <dependency>
    1.68 +      <groupId>com.sun.jersey</groupId>
    1.69 +      <artifactId>jersey-core</artifactId>
    1.70 +      <version>1.1.0-ea</version>
    1.71 +    </dependency>
    1.72 +    <dependency>
    1.73 +      <groupId>com.sun.jersey</groupId>
    1.74 +      <artifactId>jersey-server</artifactId>
    1.75 +      <version>1.1.0-ea</version>
    1.76 +    </dependency>
    1.77 +    <dependency>
    1.78 +      <groupId>com.sun.jersey</groupId>
    1.79 +      <artifactId>jersey-json</artifactId>
    1.80 +      <version>1.1.0-ea</version>
    1.81 +      <type>jar</type>
    1.82 +      <exclusions>
    1.83 +        <exclusion>
    1.84 +          <artifactId>jaxb-api</artifactId>
    1.85 +          <groupId>javax.xml.bind</groupId>
    1.86 +        </exclusion>
    1.87 +        <exclusion>
    1.88 +          <artifactId>stax-api</artifactId>
    1.89 +          <groupId>stax</groupId>
    1.90 +        </exclusion>
    1.91 +      </exclusions>
    1.92 +    </dependency>
    1.93 +  </dependencies>
    1.94 +</project>