问题描述: 在创建SpringMVC项目运行构建项目的时候,发现构建失败.报错信息为Maven-No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? 意思是需要JDK环境而不是JRE环境. 问题解决: 在项目里面把[windows]--[preference]--[Java]--[Installed JREs]里面把JRE改为JDK即可. 修改之后就可以成功…
所遇到的问题: 详情报错: 英文描述: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile) on project busiservice: Compilation failure [ERROR] No compiler is provided in this environment. Perhaps you are running…
STS新建的maven项目报错问题 解决方法:打开pom.xml文件添加 <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency> 保存即可.…
在ecplise上新建maven项目 报错: Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin…
报错1:Could not resolve archetype org.apache.maven.archetypes:maven-archetype-quickstart 起因:删除一个用quickstart模板创建的Maven项目时,多删除了个意义不明的东西,现在看来应该就是quickstart相关的jar了.(可能是损坏,也可能是删掉了) 注:此时只是不能用quickstart模板创建Maven项目了,用其他模板正常. 解决:删掉对应文件夹中的相关文件,重新用mvn help:system…
学着使用idea,想创建个maven项目,但是出师不利,立马报错,贼尴尬,错误信息如下: D:\Develop\JDK\bin\java.exe -Dmaven.multiModuleProjectDirectory=C:\Users\Administrator\AppData\Local\Temp\archetypetmp -Dmaven.home=D:\Develop\apache-maven-3.5.2 -Dclassworlds.conf=D:\Develop\apache-maven-…
Maven install失败 Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project autotest_fchtgl: Compilation failure[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE r…
每次新建maven的web(war包方式)项目时都会报错而且都要手动改,很麻烦 解决:(注意里面的jdk版本换成自己的) 改变maven配置文件   settings.xml 在文件的<profiles></profiles>节点里面添加: <profile> <id>jdk-1.8</id> <activation> <activeByDefault>true</activeByDefault> <jd…
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6....... 在新建mave…
昨晚用Mars版本建maven工程,测试springboot,一路很顺畅,没有啥阻碍. 今天换了台机器,结果就不好用了,建完maven工程后,pom文件报错,该生成的代码结构也没有,更别提jar包了. 首先明确一点,该eclipse版本是自带maven,不需要额外配置, 查了一遍,发现新机器上的eclipse虽然是mars版,但是是32位的,到C:\Program Files (x86)\Java下一看,果然没有1.6以上版本的jdk, 于是安装一个32位的1.8 JDK,windows->pr…