Hi, I hope it's OK to ask a newbie question about how to update a
Maven built Eclipse project as I'm finding it very hard to get to grips with Maven and how it works.
I followed instructions in a book as to how to download and install a Maven project for Eclipse - mvn clean package and mvn eclipse:clean eclipse:eclipse and then create a new Eclipse project from the existing source.
However I now have to update one of the jar files to a newer version for a bug fix, and I don't know how. The updated jar is at
http://repository.codehaus.org/org/mvel/mvel2/2.0.13/
I tried copying the new jar into the library folder where the other jars for the Eclipse plugin are stored and adding it to the build path of the project as an external jar (couldn't figure out how to get it in as part of the existing library) but it didn't work. Should I copy it to the Maven repository folder? Or do something with the short pom file that goes with the updated jar, like edit the original pom file on my system (which obviously covers a whole bunch of other jars) to add stuff from the short pom file, and if so which bits of the file? And how do I get Eclipse to recognise the new jar instead of the older version, will deleting the old jar from the filesystem be enough?
Any help would be very much appreciated. Thanks in advance.