This is an automated email from the ASF dual-hosted git repository. wujimin pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git
commit c5d33f39d3da9afcfc4de0a57bed46c18f63d608 Author: zhengyangyong <[email protected]> AuthorDate: Sun May 13 15:46:56 2018 +0800 SCB-548 fix fork issue for ci Signed-off-by: zhengyangyong <[email protected]> --- integration-tests/spring-zuul-tracing-tests/pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/integration-tests/spring-zuul-tracing-tests/pom.xml b/integration-tests/spring-zuul-tracing-tests/pom.xml index 27b27aa..f414368 100644 --- a/integration-tests/spring-zuul-tracing-tests/pom.xml +++ b/integration-tests/spring-zuul-tracing-tests/pom.xml @@ -93,4 +93,17 @@ <scope>test</scope> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <forkCount>1</forkCount> + <reuseForks>false</reuseForks> + </configuration> + </plugin> + </plugins> + </build> </project> -- To stop receiving notification emails like this one, please contact [email protected].
