use http://mvnrepository.com/ and paste in the jar file names.
"common-binaries" isn't the groupId you should be using. You need to find the official one. So picking "log4j" as an example, http://mvnrepository.com/search.html?query=log4j returns 28 hits. You need to determine which is the correct one. There is a description underneath, the most likely correct one would be "Apache Log4j - Apache Log4j" You can then select it http://mvnrepository.com/artifact/log4j/log4j and see all versions that match Since your internal repo hasn't kept the version history, you are stuffed working out what they are currently building against. I would just go about picking the latest values. The web page will also give you the POM Dependency value you need to paste into your pom as well. e.g.: <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> </dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
