我花了超过半天的时间来弄清楚如何做简单的Maven项目。 Eclipse似乎怪异的IDE抛出了所有错误。
我执行的步骤: 1,安装Eclipse 2,Maven home&java home和path设置环境变量 3,创建一个简单的Maven项目
pom.xml第一行有错误 [![在此处输入图片描述] [2]] [2]
<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">
在教程和视频中,我提到在创建新的maven项目时,该文件夹中还包含Java资源文件夹和版本。
我正在使用蚀光子和maven 3.5.4
错误对话框:发生Probel “建筑工作区遇到问题” “在构建过程中发生错误”
错误对话框说明:
在项目“ TestApp”上运行构建器“ Maven Project Builder”时出错。 无法计算构建计划:插件org.apache.maven.plugins:maven-resources-plugin:2.6或其依赖项之一无法解析:无法读取org.apache.maven.plugins:maven-resources-的工件描述符插件:jar:2.6
pom.xml内容:
<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>com.gps</groupId>
<artifactId>TestApp</artifactId>
<version>0.0.1-SNAPSHOT</version>
答案 0 :(得分:0)
<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>com.gps</groupId>
<artifactId>TestApp</artifactId>
<version>0.0.1-SNAPSHOT</version>
</project>
这是您需要的最低Pom.xml内容。如果您有这个,那么其他问题应该是问题。您只需构建一个简单的基本Maven项目,就不需要更多。我认为关闭标签</project>
缺少您发布的代码
答案 1 :(得分:0)
<h4>Error was thrown Because it was unable to download any artifacts or resources from repo.
Reason was i was behind the proxy i needed to configure in settings.xml <br/> Located in <br/> pref-> maven -> user settings<br/>
After i configured everything working fine<br/>
</h4>
<xmp>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>proxy.somewhere.com</host>
<port>80</port>
</proxy>
</xmp>