如何删除ideal中的自定义maven脚手架

https://blog.csdn.net/qq_36754544/article/details/79556339

如何删除maven产生的本地脚手架
remove file ~/.m2/repository/archetype-catalog.xml please.
~/.m2/repository is your local repository.

如果自定义了maven的本地仓库,就在自定义的本地仓库中找到并且删除,例如我的是在D://eclipse_other里面找到的

执行 maven 命令 报错Unable to add module to the current project as it is not of packaging type ‘pom’

最后发现在D:\MyWorkSpace\idealDuiJieZhongtai\Bonade-System\target\generated-sources\archetype下面有个pom.xml文件,将其删除就解决了。

可以参考

今天学习在本地搭建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’

上网搜资料发现一个帖子,问题解决:

原文如下:

一开始以为是IDE出错了,很是着急,后来回想出错之前的操作。就在这之前,我备份了一个pom文件,然后直接移到了workspace的根目录下,心想是不是这个问题呢?带着疑问,我把这个pom.xml删掉了,然后再创建maven工程,果然不出所料,不再报错了。

为了确保是这个原因,后来google了一下,在国外一个论坛中碰到类似的问题,有个网友的回答摘抄如下:

Are you running the command from a directory that has an existing pom.xml file in it? I think that may be confusing Maven, as it thinks you’re trying to add your new project as a sub-module of the project in the working directory.

原来是因为我在Workspace下放了个POM文件,造成了M2eclipse插件的误解,删掉就OK了。

https://blog.csdn.net/w19980426/article/details/81275461

猜你喜欢

转载自blog.csdn.net/weixin_40821669/article/details/89737946