- Revision
- 434
- Author
- mauro
- Date
- 2007-11-25 17:36:28 -0600 (Sun, 25 Nov 2007)
Log Message
Reverted to using released version of surefire with junit:junit dependency.
Modified Paths
Diff
Modified: trunk/pom.xml (433 => 434)
--- trunk/pom.xml 2007-11-25 23:29:37 UTC (rev 433) +++ trunk/pom.xml 2007-11-25 23:36:28 UTC (rev 434) @@ -109,8 +109,21 @@ <groupId>org.jmock</groupId> <artifactId>jmock-junit4</artifactId> <version>2.4.0</version> + <exclusions> + <exclusion> + <groupId>junit</groupId> + <artifactId>junit-dep</artifactId> + </exclusion> + </exclusions> <scope>test</scope> </dependency> + <dependency> + <!-- junit:junit is required by surefire until 2.4 is released and it can be configured to use junit:junit-dep --> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.4</version> + <scope>test</scope> + </dependency> </dependencies> </dependencyManagement> @@ -119,6 +132,10 @@ <groupId>org.jmock</groupId> <artifactId>jmock-junit4</artifactId> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </dependency> </dependencies> <build> @@ -148,11 +165,8 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.4-SNAPSHOT</version> - <!-- Using snapshot until 2.4 released --> - <!-- Required to allow configuration of junitArtifactName --> + <version>2.3</version> <configuration> - <junitArtifactName>junit:junit-dep</junitArtifactName> <includes> <include>**/*Test.java</include> </includes>
To unsubscribe from this list please visit:
