2015-09-14 101 views
0

我無法下載IntelliJ中的junit和Selenium依賴關係。 我在我的辦公室筆記本電腦上安裝了Intellij,並連接到互聯網,我們必須通過代理進行連接。我已經在IDE中添加了所有代理詳細信息,並且可以連接到互聯網,但是當我嘗試下載junit和硒依賴關係時,我看到以下錯誤難以下載依賴關係

依賴關係「」junit:junit:4.12「」not找到 檢查Maven模型的解決問題。請幫助

POM文件的詳細信息: -

<?xml version="1.0" encoding="UTF-8"?> 
<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/xsd/maven-4.0.0.xsd"> 
    <modelVersion>4.0.0</modelVersion> 

    <groupId>Temp1</groupId> 
    <artifactId>Temp1</artifactId> 
    <version>1.0-SNAPSHOT</version> 

    <dependencies> 

     <dependency> 
      <groupId>org.seleniumhq.selenium</groupId> 
      <artifactId>selenium-java</artifactId> 
      <version>2.47.1</version> 
     </dependency> 


     <dependency> 
      <groupId>junit</groupId> 
      <artifactId>junit</artifactId> 
      <version>4.12</version> 
      <scope>test</scope> 
     </dependency> 

    </dependencies> 

回答

0

您可以配置代理服務器以用於部分或全部的HTTP請求與Maven(https://maven.apache.org/guides/mini/guide-proxies.html)。你試過這個嗎?

<settings> 
    . 
    . 
    <proxies> 
    <proxy> 
     <id>example-proxy</id> 
     <active>true</active> 
     <protocol>http</protocol> 
     <host>proxy.example.com</host> 
     <port>8080</port> 
     <username>proxyuser</username> 
     <password>somepassword</password> 
     <nonProxyHosts>www.google.com|*.example.com</nonProxyHosts> 
    </proxy> 
    </proxies> 
    . 
    . 
</settings>