On 5/12/05, Richardson, Simon (Treasury) <[EMAIL PROTECTED]> wrote: > I'm looking to migrate our projects from Ant / Anthill to Maven and have > tried the 10 minute test. 2 hours later I still haven't managed to get past > an "unsatisfied dependency" issue. > > The error message I get is as follows: > > <<<< > The build cannot continue because of the following unsatisfied dependencies: > > commons-jelly-tags-antlr-20030211.143720.jar > antlr-2.7.2.jar > <<<< >
Others have pointed out how to get the JARs manually, or by running online. What I can tell you is that it is required by the antlr plugin, which unfortunately is used here because it hooks into java:compile. You can also uninstall the antlr plugin (remove it from your $MAVEN_HOME/plugins directory). I suggest you do the initial work with Maven in online mode, and if you need to get a clean, audited repository later, it should be asier when things are more familiar. Cheers, Brett --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
