在Eclipse中使用Maven添加模块时报错:The parent project must have a packaging type of POM 解决办法: 是将pom.xml 中的 <packaging>jar</packaging> 改成 <packaging>pom</packaging> 见下图: 用"Overview"视图查看,做如下设置: 再切换到xml视图,就可以看到packaging已经修改为pom了.…
在Maven Project 执行 New Maven Modual时,提示错误:The parent project must have a packaging type of POM http://www.cnblogs.com/cbread/p/5771341.html 解决办法: 是将pom.xml 中的 <packaging>jar</packaging> 改成 <packaging>pom</packaging>…
原文:https://maven.apache.org/guides/introduction/introduction-to-the-pom.html Introduction to the POM What is a POM? Super POM Minimal POM Project Inheritance Example 1 Example 2 Project Aggregation Example 3 Example 4 Project Inheritance vs Project A…