pom.xml
changeset 288 61a4abd3f362
parent 283 0ea04469967d
     1.1 --- a/pom.xml	Sun May 01 21:10:07 2011 +0200
     1.2 +++ b/pom.xml	Wed Jun 27 22:23:50 2012 +0200
     1.3 @@ -46,7 +46,6 @@
     1.4        <url>http://apidesign.org</url>
     1.5    </organization>
     1.6    <properties>
     1.7 -      <jerseyVersion>1.6</jerseyVersion>
     1.8        <quoridorVersion>1.4</quoridorVersion>
     1.9        <webidorVersion>1.19</webidorVersion>
    1.10        <visidorVersion>1.0-SNAPSHOT</visidorVersion>
    1.11 @@ -78,4 +77,50 @@
    1.12              </plugin>
    1.13          </plugins>
    1.14      </build>
    1.15 +    <dependencyManagement>
    1.16 +        <dependencies>
    1.17 +            <dependency>
    1.18 +                <groupId>com.sun.jersey</groupId>
    1.19 +                <artifactId>jersey-core</artifactId>
    1.20 +                <version>1.6</version>
    1.21 +            </dependency>
    1.22 +            <dependency>
    1.23 +                <groupId>com.sun.jersey</groupId>
    1.24 +                <artifactId>jersey-server</artifactId>
    1.25 +                <version>1.6</version>
    1.26 +            </dependency>
    1.27 +            <dependency>
    1.28 +                <groupId>com.sun.jersey</groupId>
    1.29 +                <artifactId>jersey-json</artifactId>
    1.30 +                <version>1.6</version>
    1.31 +                <type>jar</type>
    1.32 +                <exclusions>
    1.33 +                    <exclusion>
    1.34 +                        <artifactId>jaxb-api</artifactId>
    1.35 +                        <groupId>javax.xml.bind</groupId>
    1.36 +                    </exclusion>
    1.37 +                    <exclusion>
    1.38 +                        <artifactId>stax-api</artifactId>
    1.39 +                        <groupId>stax</groupId>
    1.40 +                    </exclusion>
    1.41 +                </exclusions>
    1.42 +            </dependency>
    1.43 +            <dependency>
    1.44 +                <groupId>com.sun.jersey.jersey-test-framework</groupId>
    1.45 +                <artifactId>jersey-test-framework-http</artifactId>
    1.46 +                <version>1.6</version>
    1.47 +                <scope>test</scope>
    1.48 +            </dependency>
    1.49 +            <dependency>
    1.50 +                <groupId>com.sun.jersey</groupId>
    1.51 +                <artifactId>jersey-grizzly2</artifactId>
    1.52 +                <version>1.6</version>
    1.53 +            </dependency>
    1.54 +            <dependency>
    1.55 +                <groupId>com.sun.jersey</groupId>
    1.56 +                <artifactId>jersey-client</artifactId>
    1.57 +                <version>1.6</version>
    1.58 +            </dependency>
    1.59 +        </dependencies>
    1.60 +    </dependencyManagement>
    1.61  </project>