Maven无法从源位置解析项目的依赖性

时间:2016-05-16 17:15:53

标签: java maven intellij-idea

我对maven很陌生,所以我不知道如何解决这个问题。

我正在尝试打包我的maven项目(mvn clean package),但我收到此错误:

  

无法在项目TestSDK上执行目标:无法解决   项目的依赖项   com.company.idea.qe:qeTestSDK:jar:1.0-SNAPSHOT:找不到   org.slf4j:slf4j-parent:jar:1.7.21 in   http://nexus-proxy/nexus/content/groups/public/被缓存在   本地存储库,在更新之前不会重新尝试解析   公司关系的间隔已经过去或强制更新 - > [帮助1]

我认为这是由Maven使用存储库值作为下载依赖项的唯一来源引起的。我要求下载WebDriverBuilder工件。不熟悉Maven我不确定如何做到这一点。

我的pom.xml目前看起来像这样:

http://maven.apache.org/xsd/maven-4.0.0.xsd">     4.0.0

<groupId>com.company.idea.qe</groupId>
<artifactId>qeTestSDK</artifactId>
<version>1.0-SNAPSHOT</version>

<repositories>
    <repository>
        <id>company-nexus</id>
        <name>Compnay Nexus</name>
        <url>http://nexus-proxy/nexus/content/groups/public/</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.company.tools</groupId>
        <artifactId>WebDriverBuilder</artifactId>
        <version>2.3.3</version>
    </dependency>
    <dependency>
        <groupId>org.testng</groupId>
        <artifactId>testng</artifactId>
        <version>6.9.10</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.53.0</version>
    </dependency>
    <!--  Gson: Java to Json conversion -->
    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.6.2</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-parent</artifactId>
        <version>1.7.21</version>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.19.1</version>
        </plugin>
    </plugins>
</build>

1 个答案:

答案 0 :(得分:3)

您的依赖关系应该是sl4j-api而不是sl4j-parent

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-api</artifactId>
    <version>1.7.21</version>
</dependency>