> I have downloaded the 0.2 release by obtaining the > "apache-oodt-0.2-src.tar.gz" file and extracting its contents. I also > installed Maven 2.2.1 in order to build OODT. I ran the "mvn install" command > from the top level directory but it tells me the build failed. The only > failure I see is an XMLTest failure, but I am unable to find any compile > artifacts (i.e. .jar files or .class files).
Try running: mvn install -DskipTests > If I try to build individual components I also get a build error. Yes, that is because many of the individual components have dependencies on other components (especially the "commons" component which has the XMLTest failure you're seeing). However, once you can successfully run "mvn install -DskipTests" those dependencies will be available. --k
