Skip to content

Commit

Permalink
Add workaround for verifier failure
Browse files Browse the repository at this point in the history
  • Loading branch information
ksclarke authored and Andrew Woods committed Aug 22, 2014
1 parent 6d56e81 commit 4554bd0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion fcrepo-kernel-impl/pom.xml
Expand Up @@ -141,8 +141,12 @@
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
<plugin>
<!-- Using Surefire instead of Failsafe as workaround: https://code.google.com/p/powermock/issues/detail?id=504 -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-XX:-UseSplitVerifier</argLine>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -654,7 +654,7 @@
</configuration> </execution> </executions> </plugin> -->
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.16</version>
<version>2.17</version>
<configuration>
<systemPropertyVariables>
<test.port>${test.port}</test.port>
Expand Down Expand Up @@ -732,7 +732,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<version>2.17</version>
<configuration>
<argLine>-Xms512m -Xmx1024m -XX:MaxPermSize=512m</argLine>
</configuration>
Expand Down Expand Up @@ -1006,7 +1006,7 @@
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.15</version>
<version>2.17</version>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
Expand All @@ -1021,7 +1021,7 @@
</plugin>
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.15</version>
<version>2.17</version>
<configuration>
<argLine>-XX:-UseSplitVerifier</argLine>
<outputName>surefire-report</outputName>
Expand Down

0 comments on commit 4554bd0

Please sign in to comment.