BUILD ERROR Error occured in starting fork, check output in log with using maven 2.2.1 and surefire plugin 2.11 while running junit test-cases

link|improve this question

40% accept rate
Launch your build with debug logs : add -X to your command line. – Jean-Philippe Briend Feb 17 at 12:00
thanks jean got the solution – user1137387 Feb 17 at 19:30
feedback

closed as too localized by Raghuram, jjnguy Feb 17 at 21:44

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

need to setup surefire plugin like this

<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.5</version>
            <configuration>
                <skipTests>false</skipTests>
                <testFailureIgnore>true</testFailureIgnore>
        <forkMode>once</forkMode>
            </configuration>
</plugin>
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.