I got mvn -DskipTests=true clean install to build successfully, I did
not execute the tests though.
I had to add
<dependency>
<groupId>org.apache.mahout</groupId>
<artifactId>mahout-math</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
in utils/pom.xml and examples/pom.xml (seems like this is not
transitively resolved by maven maybe)
and I had to add a constructor that takes two strings in
o.a.m.utils.clustering.ClusterDumper
Hope this helps,
Sebastian
Am 07.05.2010 19:03, schrieb Sean Owen:
> It exists, in math/. core/ depends on math/, and utils/ depends on
> core/, so all should be well.
>
> I'm confused since I don't see this, but I do see other problems.
>
> I'm going to delete everything and start over again.
>
> On Fri, May 7, 2010 at 5:57 PM, Sebastian Schelter
> <[email protected]> wrote:
>
>> I'm seeing a very strange compilation problem:
>>
>> Somehow LuceneIterableTest tries to extend
>> org.apache.mahout.math.MahoutTestCase which does not exist, but it
>> correctly imports org.apache.mahout.common.MahoutTestCase...
>>
>>