Fatal error by running mvn install

2007-07-19 Thread Wei Chen
Hi all, I downloaded a sample project from http://galaxy.andromda.org/images/stories/tutorial_java/timetracker-completed.zip;. As I want to to build the project by running mvn install, I got error as follow. This project contains several pom.xml. But none of them has an ArtifactID:

Re: Fatal error by running mvn install

2007-07-19 Thread noon
in your pom.xml. I hope this helps :) -- View this message in context: http://www.nabble.com/Fatal-error-by-running-mvn-install-tf4108510s177.html#a11683511 Sent from the Maven - Users mailing list archive at Nabble.com

Re: Fatal error by running mvn install

2007-07-19 Thread Teody Cue Jr.
Hi, The missing version is in /app/pom.xml under dependecy-management. The pom sort of intermixed the version in dependencyManagement and dependency. I think it should have been: dependencyManagement dependencies dependency groupId${pom.groupId}/groupId

Re: Fatal error by running mvn install

2007-07-19 Thread Teody Cue Jr.
Hi again, My bad, it seems to be that there's no 1.0-SNAPSHOT version of commons-digester in any of the repositories. I had a successful build using 1.7 though. Regards, Teody Wei Chen wrote: Hi all, I downloaded a sample project from

Re: Fatal error by running mvn install

2007-07-19 Thread Wei Chen
Many thanks! :-) Original-Nachricht Datum: Thu, 19 Jul 2007 15:40:52 +0800 Von: Teody Cue Jr. [EMAIL PROTECTED] An: Maven Users List users@maven.apache.org Betreff: Re: Fatal error by running mvn install Hi again, My bad, it seems to be that there's no 1.0-SNAPSHOT version

Re: Fatal error by running mvn install

2007-07-19 Thread Wayne Fay
This makes sense -- SNAPSHOT builds aren't deployed to the normal places. You'd need to add a specific repo that contained Snapshots if you wanted to add a dependency on commons-digester 1.0-SNAPSHOT. Just setting the version to 1.7 as you mentioned should be fine. Wayne On 7/19/07, Teody Cue