最近创建maven项目时,时不时的出现问题,为此打算记录一下。为之后学习更加便捷。
这次报错如下:
在自己配置的仓库下创建archetype-catalog.xml,文件内容如下:
<?xml version="1.0" encoding="UTF-8"?> <archetype-catalog xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-catalog/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-catalog/1.0.0 http://maven.apache.org/xsd/archetype-catalog-1.0.0.xsd"> <archetypes> <archetype> <groupId>com.fr</groupId> <artifactId>fr-server</artifactId> <version>7.0</version> <repository> http://git.oschina.net/thinkgem/repos/raw/master </repository> </archetype> <archetype> <groupId>com.fr</groupId> <artifactId>fr-third</artifactId> <version>7.0</version> <repository> http://git.oschina.net/thinkgem/repos/raw/master </repository> </archetype> </archetypes> </archetype-catalog>
然后进行如下配置:-DarchetypeCatalog=local
然后再重新创建maven web项目。
添加一项Properties : archetypeCatalog
= internal
这样项目就创建成功了。