Author: craigmcc Date: Wed Jun 28 20:49:02 2006 New Revision: 417929 URL: http://svn.apache.org/viewvc?rev=417929&view=rev Log: It does not seem to make much practical difference, but let's be pedantic and declare that shale-test now has a compile-time dependency on JUnit (because of the use of junit.extensions.TestSetup), rather than just a test-time dependency.
Modified: struts/shale/trunk/shale-test/pom.xml Modified: struts/shale/trunk/shale-test/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/trunk/shale-test/pom.xml?rev=417929&r1=417928&r2=417929&view=diff ============================================================================== --- struts/shale/trunk/shale-test/pom.xml (original) +++ struts/shale/trunk/shale-test/pom.xml Wed Jun 28 20:49:02 2006 @@ -18,7 +18,7 @@ */ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -45,6 +45,15 @@ </exclusion> </exclusions> </dependency> + <!-- For the "org.apache.shale.test.cargo" package, we need to have --> + <!-- JUnit as a compile time dependency, not just scope="test". --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>compile</scope> + </dependency> + <dependency> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-core-uberjar</artifactId>