Enabling webidor tests, fails misserabley due to http://java.net/jira/browse/JERSEY-757 glassfish
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 20 Aug 2011 17:21:28 +0200
branchglassfish
changeset 286accdcc2ab312
parent 285 bc4ddef89763
child 287 92bd2090dd5f
Enabling webidor tests, fails misserabley due to http://java.net/jira/browse/JERSEY-757
webidor/pom.xml
     1.1 --- a/webidor/pom.xml	Sat Aug 20 17:14:23 2011 +0200
     1.2 +++ b/webidor/pom.xml	Sat Aug 20 17:21:28 2011 +0200
     1.3 @@ -56,7 +56,7 @@
     1.4          </dependency>
     1.5          <dependency>
     1.6              <groupId>com.sun.jersey.jersey-test-framework</groupId>
     1.7 -            <artifactId>jersey-test-framework-http</artifactId>
     1.8 +            <artifactId>jersey-test-framework-embedded-glassfish</artifactId>
     1.9              <version>${jerseyVersion}</version>
    1.10              <scope>test</scope>
    1.11          </dependency>
    1.12 @@ -119,7 +119,11 @@
    1.13                  <artifactId>maven-surefire-plugin</artifactId>
    1.14                  <version>2.9</version>
    1.15                  <configuration>
    1.16 -                    <skipTests>true</skipTests>
    1.17 +                    <skipTests>false</skipTests>
    1.18 +                    <forkMode>pertest</forkMode>
    1.19 +                    <classpathDependencyExcludes>
    1.20 +                        <exclude>javax:javaee-web-api</exclude>
    1.21 +                    </classpathDependencyExcludes>
    1.22                  </configuration>
    1.23              </plugin>
    1.24          </plugins>