How to use a maven 1 repository with maven 2?
I am having problem building my project (using maven 2) which references some jars from a maven 1 repository. The scenario: My company has a private maven 1 repository that has the following info: <url>http://my-company-maven1-repo/maven-repository<url> It has the layout of: maven-repository |_repository |_ .... |_ .... |_vectorgraphics |_jars |_freehep_swing-2.0.3.jar |_freehep_io-2.0.2.jar What I have tried: 1. Following the guide here: relevant maven official docs My mvn2 pom.xml: <repository> <snapshots> <enabled>true</enabled> </snapshots> <id>my-repo</id> <-- I made up a temporary id