eclipse maven构建
Posted svili
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse maven构建相关的知识,希望对你有一定的参考价值。
run as --> maven install
1.No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
无JDK编译环境,解决办法:添加JDK,注意保留JRE运行环境
2.Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test)
解决办法
(1)pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId>
<version>${your.version}</version>
<configuration> <skip>true</skip> </configuration> </plugin>
(2)如果pom.xml没问题,则将本地仓库中org\\apache\\maven\\surefire 目录下的内容删除,重新down Dependency试一下.
以上是关于eclipse maven构建的主要内容,如果未能解决你的问题,请参考以下文章