将 timboudreau netty-http-client 导入到 Eclipse 中?
import timboudreau netty-http-client into eclipse?
我开始致力于开源项目 netty-http-client(https://github.com/timboudreau/netty-http-client)
并且我已经克隆了 netty-http-client 和 mastfrog-parent,但是,当我将它们导入 eclipse 时,eclipse 告诉我 netty-http-client 的 pom.xml 对于“不可解析的父 POM",我对此一无所知,有人帮忙!
您需要添加 Tim 拥有 mastfrog parent pom 工件的存储库。
来自自述文件:
To use with Maven, add the Maven repo to your project as described here. Then add groupId com.mastfrog artifactId netty-http-client to your POM file.
只需添加
<repositories>
<repository>
<id>timboudreau-builds</id>
<name>timboudreau.com builds</name>
<url>http://timboudreau.com/builds/plugin/repository/everything/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
到您项目的 pom.xml
(不过,我实际上会将 "updatePolicy=never" 更改为更合理的内容)。
我已经解决了。
它应该在 url https://github.com/timboudreau/mastfrog-parent
中安装(mvn install)父 pom
我开始致力于开源项目 netty-http-client(https://github.com/timboudreau/netty-http-client)
并且我已经克隆了 netty-http-client 和 mastfrog-parent,但是,当我将它们导入 eclipse 时,eclipse 告诉我 netty-http-client 的 pom.xml 对于“不可解析的父 POM",我对此一无所知,有人帮忙!
您需要添加 Tim 拥有 mastfrog parent pom 工件的存储库。
来自自述文件:
To use with Maven, add the Maven repo to your project as described here. Then add groupId com.mastfrog artifactId netty-http-client to your POM file.
只需添加
<repositories>
<repository>
<id>timboudreau-builds</id>
<name>timboudreau.com builds</name>
<url>http://timboudreau.com/builds/plugin/repository/everything/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
到您项目的 pom.xml (不过,我实际上会将 "updatePolicy=never" 更改为更合理的内容)。
我已经解决了。 它应该在 url https://github.com/timboudreau/mastfrog-parent
中安装(mvn install)父 pom