maven之问题集合
Posted Fenny_Wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven之问题集合相关的知识,希望对你有一定的参考价值。
1、Maven build时报“Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) on project complex-industry-test: There are test failures.“
解决方案一:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-testng</artifactId>
<version>2.19.1</version>
</dependency>
</dependencies>
<configuration>
<skipTests>true</skipTests>
<reportFormat>xml</reportFormat>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
将skipTests改成true
解决方案二:
执行mvn clean package -Dmaven.test.skip=true
2、出现"Cannot access nexus-all (http://nexus.2xxx-dev.com/) in offline mode"
解决方案:把Work offline的勾去除即可
3、IDEA中maven项目打包报错“Dependency could not found”
解决方案:File->Setting->Maven->Repositories->Update(选择本地仓库的路径)
4、dependencies标红,有红色波浪线(缺少dependency),jar在本地的maven仓库中实际上是存在的
解决方案:把pom文件中有波浪线的dependency删除,保存后,再加回来
以上是关于maven之问题集合的主要内容,如果未能解决你的问题,请参考以下文章
使用Eclipse自带的Maven插件创建Web项目时报错:
maven执行update命令时报org/apache/maven/shared/filtering/MavenFilteringException错误