我在一個Maven 3項目中定義了一個依賴pom.xml
。依賴關係是如下:爲什麼maven在錯誤的回購中尋找神器?
<repository>
<id>java.net</id>
<name>java.net</name>
<url>http://download.java.net/maven/2</url>
</repository>
工件確實存在於所述存儲庫:
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>el-impl</artifactId>
<scope>runtime</scope>
<version>2.2</version>
</dependency>
Repostory在POM描述如下。 It's easy to check。儘管如此,Maven正在試圖從repo1.maven.org
獲得神器。 這可能是什麼原因?也許我在定義倉庫訪問時犯了一些嚴重錯誤?其他依賴似乎沒有問題。
Plugin org.mortbay.jetty:maven-jetty-plugin:6.1.26 or one of its
dependencies could not be resolved: Could not find artifact
org.glassfish.web:el-impl:jar:2.2
in central (http://repo1.maven.org/maven2)