如果IntelliJ IDEA在代理后面,则无法导入任何下载的maven依赖项

时间:2017-07-18 10:15:21

标签: maven intellij-idea proxy

我是这样为corp代理服务器配置我的settings.xml     

<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">

  <activeProfiles>
    <activeProfile>securecentral</activeProfile>
  </activeProfiles>

  <profiles>
    <profile>
      <id>securecentral</id>
      <repositories>
        <repository>
          <id>central</id>
          <url>http://repo1.maven.org/maven2</url>
          <releases>
            <enabled>true</enabled>
          </releases>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>central</id>
          <url>http://repo1.maven.org/maven2</url>
          <releases>
            <enabled>true</enabled>
          </releases>
        </pluginRepository>
      </pluginRepositories>
    </profile>

  </profiles>

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

并且有可能下载依赖项。但是如果下载它的确定,当我尝试将某些内容导入到类时,想法无法找到任何下载的依赖项并在顶级域名之后标记为红色。当我在org之后放置点时,可以只看到基本库(默认包含)。例如。

在.m2文件夹中下载所有必需的库

在设置中 - &gt;构建工具 - &gt; maven all as default

任何新的依赖项都会成功下载

pom.xml没有任何错误

<?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>groupId1</groupId>
    <artifactId>untitled</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <!-- selenium-java -->
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>3.4.0</version>
        </dependency>
    </dependencies>

</project>

有人对此有任何想法吗? 任何建议都会有所帮助!

非常感谢你们!

0 个答案:

没有答案