Repository: jclouds-labs Updated Branches: refs/heads/master e007ea41a -> 2f4dc796c
Do not run H2-JDBC tests in parallel H2JdbcBlobIntegrationTest and H2JdbcContainerIntegrationTest race with each other during database creation, sometimes yielding RollbackException due to missing tables. Project: http://git-wip-us.apache.org/repos/asf/jclouds-labs/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds-labs/commit/2b597284 Tree: http://git-wip-us.apache.org/repos/asf/jclouds-labs/tree/2b597284 Diff: http://git-wip-us.apache.org/repos/asf/jclouds-labs/diff/2b597284 Branch: refs/heads/master Commit: 2b597284e7ecf035cffa3bc9a59f5fbce0f7fb6b Parents: e007ea4 Author: Andrew Gaul <[email protected]> Authored: Thu Feb 25 22:28:31 2016 -0800 Committer: Andrew Gaul <[email protected]> Committed: Thu Feb 25 22:29:06 2016 -0800 ---------------------------------------------------------------------- h2-jdbc/pom.xml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds-labs/blob/2b597284/h2-jdbc/pom.xml ---------------------------------------------------------------------- diff --git a/h2-jdbc/pom.xml b/h2-jdbc/pom.xml index 54cb3bf..5fcd9f5 100644 --- a/h2-jdbc/pom.xml +++ b/h2-jdbc/pom.xml @@ -34,6 +34,27 @@ <jclouds.osgi.import>org.jclouds*;version="${project.version}",*</jclouds.osgi.import> </properties> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <executions> + <execution> + <id>integration</id> + <phase>integration-test</phase> + <goals> + <goal>test</goal> + </goals> + <configuration> + <parallel>none</parallel> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <dependencies> <dependency> <groupId>org.apache.jclouds.labs</groupId>
