On Sat, 2008-01-12 at 11:20 +0100, Thomas Chang wrote: > Hi all, > > I use spring in my project. And I use maven2. In the "pom.xml" I have to > set the version of the dependencies. I wonder where can I the mirror site > which suply the spring*.jar with version number. I go to the spring homepage > and there are different version of spring package. But each of them just > contains the jar without version number. > > Surely this not happend to spring but also to other jars such as > commons-*.jar. > > Somebody knows how to handle such a situation?
Maven comes with a number of "built-in" repositories. You can see them all by looking at the documentation for the "root pom" on the maven website. However one of them is here: http://repo1.maven.org/maven2 As you can see, most java projects have their jars already here. Spring certainly does: http://repo1.maven.org/maven2/org/springframework/ Please read the "Learning About Maven" documentation on the maven website. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
