您的位置:首页技术文章
文章详情页

java - maven指定-DarchetypeCatalog=local,但是提示找不到any catalog

【字号: 日期:2024-01-11 14:00:37浏览:25作者:猪猪

问题描述

原来一直卡maven-archetype-plugin:RELEASE怀疑是archetype-catalog.xml下不下来,所以手动下载了这个文件然后根据Maven官网的说法,可以使用local的方式Maven archetype catalog按上面说的是这么放在~/.m2/archetype-catalog.xml但是其他资料说是放在~.m2repositoryorgapachemavenarchetype对应的版本反正我这两个都试了,现在我也不确定到底放哪里

通过intellij在创建项目的时候指定archetypeCatalog=localjava - maven指定-DarchetypeCatalog=local,但是提示找不到any catalog

但是在创建过程中还是没有使用local[WARNING] Archetype not found in any catalog. Falling back to central repository (http://repo.maven.apache.org/...

另一种方式是在VM options 那里配置 -DarchetypeCatalog=local 理论上应该是一样的,反正结果都一样

这个到底要怎么做才能使用local呢?(其实现在不用local也能创建了,但是就是想不明白为什么用local会提示找不到)

如果不用local,还有个问题,就是[WARNING] No archetype found in remote catalog. Defaulting to internal catalog

任何WARNING,应该都是不正常的,要什么才能消掉这个WARNING

问题解答

回答1:

配置archetypeCatalog=internal试试

标签: java