2015-07-11 63 views
1

我想使用maven中央導入球衣,但是,intellij不會讀取我球衣的pom.xml依賴項。該版本號顯示爲紅色並出現以下錯誤:maven pom.xml文件不會識別球衣框架

enter image description here

這裏是文字上的pom.xml:

 <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>com.example.emanuel</groupId> 
    <artifactId>jerseyexample</artifactId> 
    <packaging>war</packaging> 
    <version>1.0-SNAPSHOT</version> 
    <name>jerseyexample Maven Webapp</name> 
    <url>http://maven.apache.org</url> 
    <dependencies> 
    <dependency> 
     <groupId>junit</groupId> 
     <artifactId>junit</artifactId> 
     <version>3.8.1</version> 
     <scope>test</scope> 
    </dependency> 

    <dependency> 
     <groupId>org.glassfish.jersey.core</groupId> 
     <artifactId>jersey-client</artifactId> 
     <version>2.19</version> 
    </dependency> 

    </dependencies> 
<build> 
    <finalName>jerseyexample</finalName> 
    <plugins> 
     <plugin> 
     <groupId>org.apache.tomcat.maven</groupId> 
     <artifactId>tomcat7-maven-plugin</artifactId> 
     <version>2.2</version> 
     <configuration> 
      <server>TomcatServer</server> 
      <path>/newjersey</path> 
     </configuration> 
     </plugin> 
    </plugins> 
    </build> 
</project> 

我複製直接從here

回答

0

的問題是與依賴我的settings.xml文件,maven用來構建項目。我在那裏定義了一個使用代理的鏡像,它阻止了下載。