Hi - I'm very new to maven but, from what I understand, maven will download jars as needed from repo sites. However, it continually claimed it could not download org.eclipse.persistence:javax.persistence:jar:1.1.0 and org.eclipse.persistence:eclipselink:jar:1.1.0. So, I went to a mirror, downloaded them myself and installed them both using the commands:
mvn install:install-file -DgroupId=org.eclipse.persistence -DartifactId=* eclipselink* -Dversion=1.1.0 -Dpackaging=jar -Dfile=/path/to/file and mvn install:install-file -DgroupId=org.eclipse.persistence -DartifactId=* javax.persistence* -Dversion=1.1.0 -Dpackaging=jar -Dfile=/path/to/file But, now when I run "mvn compile" it complains about every persistence annotation saying that the symbol is not found. What now? I'm lost. Jared
