There is something I don't understand. In core/pom.xml there is the following
dependency:
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
but when I run "mvn -Dmaven.test.skip=true package" in the "core", I still get
junit-*.jar in core/target/dependency !
And because examples/pom.xml contains the following dependency:
<dependency>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout-core</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
(I think it's the core-tests.jar) when I run "mvn -Dmaven.test.skip=true
package" in the "examples", maven tries to find it (and fails).
--- En date de : Ven 17.4.09, Sean Owen <[email protected]> a écrit :
> De: Sean Owen <[email protected]>
> Objet: Re: Unit Tests Failed
> À: [email protected]
> Date: Vendredi 17 Avril 2009, 11h04
> Yeah is this due to the VisibleCanopy
> class? if so may I just move it
> to core? this dependency doesn't make sense.
>
> On Fri, Apr 17, 2009 at 9:58 AM, deneche abdelhakim <[email protected]>
> wrote:
> > This dosn't work for "mahout/examples" because somehow
> there is a dependency with core-tests !!!
>