2016-06-08 131 views
1

因此目前在工作中,我面臨的問題是,我無法構建使用全局依賴關係的項目。我們使用自動配置代理腳本,我已經在文件 - >設置 - >外觀&行爲 - >系統設置 - > HTTP代理中設置了自動配置代理腳本,並使用Check Connection功能進行測試。IntelliJ HTTP代理工作,但在gradle依賴項失敗

檢查連接函數可用於任何任意html,也可用於所需的gradle文件(jcenter.bintray.com/com/android/tools/build/gradle/2.0.0/gradle-2.1.0-javadoc 。罐)。

對於解決方案我已經嘗試過:

  • 設置代理信息到gradle.properties
  • 試圖設置HTTP和/或HTTPS代理設置

    * systemProp.http(s).proxyHost=linktoproxyconfig.org 
    * systemProp.http(s).proxyPort=xxxx     
    * systemProp.http(s).proxyUser=xxxx    
    * systemProp.http(s).proxyPassword=xxxx 
    
  • 改變儲存庫方向(jcenter()與jcenter {url http://jcenter.bintray.com}

我意識到這樣一個事實,即人們可以離線工作,在本地下載gradle。但爲了防止在不同機器上額外維護gradle版本,我想限制離線工作選項。

編輯:也許我還應該添加錯誤消息:
Gradle sync failed: Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy settings either in IDE or Gradle.

我將不勝感激,如果有人有關於解決方案的想法,

感謝 sasuchi

+0

,有HTTP/HTTPS前綴,將其刪除! https://stackoverflow.com/questions/44109325/gradle-installation-having-a-proxy-issue/44260798#answer-44260797 – oikonomopo

回答

相關問題