Repository: camel Updated Branches: refs/heads/master 7ad36e3d2 -> 7a2e5197f
CAMEL-7738: Fixed vertx tests which must fork per test. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/7a2e5197 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/7a2e5197 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/7a2e5197 Branch: refs/heads/master Commit: 7a2e5197f54a096b82e897f67faac75d3ed381fb Parents: 7ad36e3 Author: Claus Ibsen <davscl...@apache.org> Authored: Fri Aug 22 15:18:36 2014 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Fri Aug 22 15:18:36 2014 +0200 ---------------------------------------------------------------------- components/camel-vertx/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/7a2e5197/components/camel-vertx/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-vertx/pom.xml b/components/camel-vertx/pom.xml index ea6ed54..9b5f1c4 100644 --- a/components/camel-vertx/pom.xml +++ b/components/camel-vertx/pom.xml @@ -65,4 +65,16 @@ </dependency> </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <forkMode>perTest</forkMode> + <enableAssertions>false</enableAssertions> + </configuration> + </plugin> + </plugins> + </build> + </project>