I'm struggling with this thing and still cannot find any acceptable solution.
The thing is that I'm using javax.persistence and eclipselink jars, which I told maven to download from this repository "
http://mirror.cs.rit.edu/mirrors/eclipse/rt/eclipselink/maven.repo
" (which I called "eclipse repo"), because these jars weren't in the central maven repository. So, maven downloads the jars, installed them in the local repository, and everything works fine.
Then, I changed the junit version from 3.8.x to 4.8.x to run some tests, and here is when the fun begins; when I changed the junit version to 4.8.x, then maven went to download it from the remote repository, BUT it alway tries to download the new junit version from the eclipse repo, and the junit jar is in the maven central repository!.
After this, I removed the eclipse repository from the project pom.xml, and maven proceeds to locate and download the new junit version, AND ALSO it tries to download ¡again! the eclipse jars (javax.persistence and eclipselink), but now from the maven central repository, which produces a beautifull error, because these files aren't there. Now, my questions are:
1.- why maven is trying to download the eclipselink files again, if they are in my local repository (I'm sure about this)?. Mmmmm, better yet, when I write down again the eclipse repo in the project pom.xml, then maven stops trying download the eclipselink files. It looks like, the eclipselink jars are LINKED to the remote repository where they were downloaded from, and when I remove the eclipse repo then maven feels something like, hey! these eclipselink jars were not downloaded from the maven central repository, and I don't see the repository where they were downloaded from, let's download them again - it's so funny download some shit I already have!!!! -- WTF is this!!!
2.- why maven doesn't search in the remote repositories availables?, if an artifact is not in one repository, it probably could be in the next one.
3.- where is written the maven central repo, which file?, it's not in the settings.xml, it's hidden somewhere else. I'm trying to add more remote repos to maven, but I can't find where is the maven central repo. I'm using maven 3.
BTW, I know I can install the junit jar manually, but it's not the point. Maven should search in the available repositories the artifacts it needs, and ALSO use the artifacts already installed in your local repo.
If someone could please help me with this, I'll really appreciate it. Thanks in advance.
As requested:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>tutorial</groupId>
<artifactId>chapter02</artifactId>
<version>1.0-SNAPSHOT</version>
<name>chapter02</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
<version>10.4.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.4.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<inherited>true</inherited>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>EclipseLink Repo</id>
<url>http://mirror.cs.rit.edu/mirrors/eclipse/rt/eclipselink/maven.repo</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
As you can see, there is the eclipse repo, if I remove this eclipse repo from the pom.xml then maven starts downloading the eclipselink jars, that are already instlalled in local repository.
Regarding the /.m2/settings.xml, I have no such file, the only settings.xml file I found is in $M2_HOME/conf/settings.xml, and believe me there is no trace of the maven central repository nor any other repository. See it yourself:
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<pluginGroups>
<pluginGroup>org.mortbay.jetty</pluginGroup>
</pluginGroups>
<proxies>
</proxies>
<servers>
</servers>
<mirrors>
</mirrors>
<profiles>
</profiles>
</settings>
Any toughts?