RE: Maven dependency versions

2007-08-05 Thread Dave Hoffer
dependency versions If I have an artifact of version a.b.c.0 in my local repository, and someone uploads a newer artifact with version a.b.c.0 to the remote repository, will my dependent project check if there is a newer version of artifact a.b.c.0 in all of the repositories compared to that in my

Re: Maven dependency versions

2007-08-05 Thread Wayne Fay
If its a SNAPSHOT, then it will look. Otherwise, it will not. In this case, it sounds like it is not a SNAPSHOT, therefore it will not look for updates. For Maven to work properly, released versions must *not* change. If you have files that can/will change, you must call them SNAPSHOTs. Wayne On

Maven dependency versions

2007-08-05 Thread Morgovsky, Alexander \(US - Glen Mills\)
If I have an artifact of version a.b.c.0 in my local repository, and someone uploads a newer artifact with version a.b.c.0 to the remote repository, will my dependent project check if there is a newer version of artifact a.b.c.0 in all of the repositories compared to that in my local repository, or