>>I am attempting to build Maven from source, using anton an ARM processor > running an Angstrom Linux build, a variant of 2.6.35.10. The processor >>is a TI OMAP, arm7l instuction set.
Is there a specific reason you're trying to do this vs just using the compiled binaries provided on the website? Bootstrapping Maven on a new architecture is not trivial -- just ask that guy Josef who has been trying to do the same on OpenVMS since hmmm 2010. Admittedly I only have 1 ARM box here (an old Netwinder developer version) and I've never tried to run Java much less Maven on it, so you might have a good reason. >>Below is the utput from the buld. I first thought I might just post >>the error, but sbsequently thought that the interim successes mgh be >>meaningful in figuring out the issue, so I included the entir trace. I >>apologize in advance if this is toomuch data. It *is* too much data. Please post this type of output at pastebin.com next time and send us a link along with just the few lines from the error. This mailling list strips attachments. >>Could someone let me know ho I might try to solve ths error and >>complete the build? I'm not certain, but I'll try to help... >> [java] [WARNING] The POM for >>org.apache.maven.scm:maven-scm-provider-git-commons:jar:1.5 is invalid, >>transitive dependencies (if any) will not be available, enable debug >>logging for more details >> [java] [WARNING] The POM for >>org.apache.maven.scm:maven-scm-provider-cvsexe:jar:1.5 is invalid, >>transitive dependencies (if any) will not be available, enable debug >>logging for more details >> [java] [WARNING] The POM for >>org.apache.maven.scm:maven-scm-provider-clearcase:jar:1.5 is invalid, >>transitive dependencies (if any) will not be available, enable debug >>logging for more details >> [java] [WARNING] The POM for >>org.apache.maven.scm:maven-scm-provider-perforce:jar:1.5 is invalid, >>transitive dependencies (if any) will not be available, enable debug >>logging for more details >> [java] [WARNING] The POM for >>com.google.code.maven-scm-provider-svnjava:maven-scm-provider-svnjava:jar: >>1.13 is invalid, transitive dependencies (if any) will not be available, >>enable debug logging for more details >> [java] [WARNING] The POM for >>org.tmatesoft.svnkit:trilead-ssh2:jar:build213-svnkit-1.3-patch is >>invalid, transitive dependencies (if any) will not be available, enable >>debug logging for more details >> [java] [WARNING] The POM for org.tmatesoft.sqljet:sqljet:jar:1.0.4 >>is invalid, transitive dependencies (if any) will not be available, >>enable debug logging for more details >> [java] [WARNING] The POM for net.java.dev.jna:jna:jar:3.2.2 is >>invalid, transitive dependencies (if any) will not be available, enable >>debug logging for more details These invalid POMs may be an issue you will want to resolve eventually, but not your main problem. >> [java] Jan 2, 2000 1:42:25 PM >>org.sonatype.guice.bean.reflect.Logs$JULSink warn >> [java] WARNING: Error injecting: org.codehaus.mojo.build.CreateMojo >> [java] java.lang.NoClassDefFoundError: >>org/apache/maven/scm/ScmException This is your main problem. This class is included in maven-scm-api-1.5.jar (and "all" other versions). Can you perhaps check the jar in your .m2 directory and ensure it has this class? It should, but you may have a corrupted Jar or something that is causing these problems. See more info here: https://oss.sonatype.org/index.html#nexus-search;classname~scmexception maven Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
