Add the correct junit version (surefire need junit version >=3.8)

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@290973 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Emmanuel Venisse 2005-09-22 16:04:49 +00:00
parent ebc406ab8e
commit 23611891ee
3 changed files with 14 additions and 2 deletions

View File

@ -17,6 +17,12 @@
<artifactId>commons-logging</artifactId> <artifactId>commons-logging</artifactId>
<version>1.0.3</version> <version>1.0.3</version>
</dependency> </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>

View File

@ -10,6 +10,12 @@
<artifactId>marmalade-el-commons</artifactId> <artifactId>marmalade-el-commons</artifactId>
<version>1.0-alpha-2</version> <version>1.0-alpha-2</version>
</dependency> </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
</model> </model>

View File

@ -7,8 +7,8 @@
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<!-- Select 3.7 --> <!-- Select 3.8 -->
<version>(,3.8)</version> <version>(,3.8.1)</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>