在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>…
创建Maven Module时报错:The parent project must have a packaging type of POM 解决的办法,是把父项目的Packaging改成pom:…
今天学习在本地搭建Maven工程时,执行了mvn archetype:generate 命令,报错. Unable to create project from archetype [org.apache.maven.archetypes:maven-archetype-quickstart:1.1] Unable to add module to the current project as it is not of packaging type 'pom' 上网搜资料发现一个帖子,问题解决:…
在使用mvn archetype:generate生成Maven实战03:HelloWorld中的HelloWorld的项目骨架时报了这个错,从字面上分析是可能与pom.xml文件有关,然后我看了一下我命令行的打开位置,果然在项目根目录下,里面刚好有个pom.xml,如果在这里构建骨架,又要用pom.xml文件,是会不成功的,就会报Unable to add module to the current project as it is not of packaging type 'pom'这个错…
[INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 0.169 s [INFO] Fin…
原文地址:http://blog.csdn.net/yao123long/article/details/49925659 dependency为什么会有type为pom,默认的值是什么?dependency中type默认为jar即引入一个特定的jar包.那么为什么还会有type为pom呢?当我们需要引入很多jar包的时候会导致pom.xml过大,我们可以想到的一种解决方案是定义一个父项目,但是父项目只有一个,也有可能导致父项目的pom.xml文件过大.这个时候我们引进来一个type为pom,意…
报错截图及详细:   15:30:29[ERROR]The goal you specified requires a project to execute but there is no POM inthis directory (/data/workspace). Please verify you invoked Maven from thecorrect directory. -> [Help 1] 15:30:29[ERROR] 15:30:29[ERROR] Tosee the fu…
1.首先要获取Project对象 2.分析得到Project对象生成的bin路径,也就是$(TargetPath) 3.Assembly.LoadFromFile( binpath ) 4.asm.GetTypes(),这里要注意处理Reference Project 代码如下: 1.GetProject() Project GetProject() { var hostServiceProvider = (IServiceProvider)this.Host; var dte = (DTE)h…
1.命令方式: 1)Create the top-level root: mvn archetype:generate -DarchetypeGroupId=org.codehaus.mojo.archetypes -DarchetypeArtifactId=pom-root -DarchetypeVersion=RELEASE 2)cd into your newly created root dir 3)每一个子模块: mvn archetype:generate -DarchetypeGr…