mirror of https://github.com/apache/maven.git
surefire issues
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163756 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
54a8cea863
commit
15dc3811c8
|
@ -286,7 +286,7 @@ public class MBoot
|
|||
for ( Iterator i = reader.getDependencies().iterator(); i.hasNext(); )
|
||||
{
|
||||
Dependency d = (Dependency) i.next();
|
||||
if ( d.getGroupId().equals( "surefire" ) )
|
||||
if ( d.getGroupId().equals( "surefire" ) || d.getGroupId().equals( "junit" ) )
|
||||
{
|
||||
surefireDependencies.add( d );
|
||||
}
|
||||
|
|
|
@ -13,16 +13,12 @@
|
|||
<dependency>
|
||||
<groupId>surefire</groupId>
|
||||
<artifactId>surefire</artifactId>
|
||||
<version>1.2-SNAPSHOT</version>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
<version>1.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>surefire</groupId>
|
||||
<artifactId>surefire-booter</artifactId>
|
||||
<version>1.2-SNAPSHOT</version>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
<version>1.2</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
|
|
Loading…
Reference in New Issue