Repository: camel Updated Branches: refs/heads/master 84133ccad -> 8d33bc188
Fixed Surefire configuration in camel-netty-http for test failure Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/8d33bc18 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/8d33bc18 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/8d33bc18 Branch: refs/heads/master Commit: 8d33bc188c791bbcc7750e2abcf88de891c338af Parents: 84133cc Author: Andrea Cosentino <anco...@gmail.com> Authored: Wed Mar 8 08:22:22 2017 +0100 Committer: Andrea Cosentino <anco...@gmail.com> Committed: Wed Mar 8 08:22:22 2017 +0100 ---------------------------------------------------------------------- components/camel-netty-http/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/8d33bc18/components/camel-netty-http/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-netty-http/pom.xml b/components/camel-netty-http/pom.xml index cab9354..16ada35 100644 --- a/components/camel-netty-http/pom.xml +++ b/components/camel-netty-http/pom.xml @@ -93,4 +93,16 @@ </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <forkCount>1</forkCount> + <reuseForks>false</reuseForks> + </configuration> + </plugin> + </plugins> + </build> + </project>