我是maven的新手。我正在尝试在eclipse中使用原型 org.glassfish.jersey.archetype 创建一个maven项目。如图所示,它给出了错误。
无法解析Archetype
我已经按照这些链接回答了问题" Jersey Maven quickstart archetype in Eclipse。 " " Create a Maven project in Eclipse complains "Could not resolve archetype""
我使用代理设置尝试了它,但仍无法正常工作。这是设置文件(xml)中的内容。我还在maven用户设置中更新了这个文件。
<settings>
<proxies>
<proxy>
<id>example-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy.example.com</host>
<port>8080</port>
<username>proxyuser</username>
<password>somepassword</password>
<nonProxyHosts>www.google.com|*.example.com</nonProxyHosts>
</proxy>
</proxies>
</settings>
此外,我无法添加&#34; REMOTE CATALOG&#34;使用此链接。 &#34; http //repo1.maven.org/maven2/archetype-catalog.xml"。它显示错误&#34; REMOTE CATALOG IS EMPTY&#34;。这是相同的图像。
远程目录为空错误
我使用本地目录来获取原型。
答案 0 :(得分:0)
您可以使用链接http://repo.maven.apache.org/maven2/archetype-catalog.xml直接下载目录文件,并将其保存在本地系统上。
然后在eclipse中将此文件添加为本地目录(Windows - &gt; Preferences - &gt; Maven - &gt; Archetype - &gt; Add Local Catalog),如下图所示。
然后选择此目录作为原型。