Re: Is there a way to say get the latest version in the project.xml file?

2009-11-04 Thread Lukas Theussl
There is no way to do that in maven 1.x (and for a good reason). See http://maven.apache.org/maven-1.x/using/managing-dependencies.html#Using_SNAPSHOT_Dependencies HTH, -Lukas laredotornado wrote: Hi, I'm using Maven 1.1. I have this dependency in my test/project.xml file ...

Is there a way to say get the latest version in the project.xml file?

2009-11-02 Thread laredotornado
Hi, I'm using Maven 1.1. I have this dependency in my test/project.xml file ... dependency groupIdmyco.dor.dmv.driver.matching/groupId artifactIdmyco-dor-dmv-driver-matching-client/artifactId version${pom.currentVersion}/version /dependency However, there is no

Re: Is there a way to say get the latest version in the project.xml file?

2009-11-02 Thread Michael Remijan
In your dependency, you might be able to do something like this: version[0.0.1,)/version which means any version greater than or equal to 0.0.1. However, this depends on your Maven version because I think it's relatively new. From: laredotornado