ivy 依赖项修订与 svn 有什么关系吗?

发布于 2024-11-06 04:56:14 字数 556 浏览 1 评论 0原文

由于没有 ivy 依赖项 的背景,我正在尝试使用 solr 4.0 构建 nutch,但我不知道如何更改 ivy.xml 中的 nutch ivy 对 solr 的依赖:

<dependency org="org.apache.solr" name="solr-solrj" *rev="**1.4.1**"*
conf="*->default" />

我不知道这些修订的设置位置,因为它们肯定不对应于 svn 修订。它们也不对应于 Maven 版本(版本为 4.0-SNAPSHOT)。那么我通常会在哪里找到可用的常春藤修订版本? 另外,是否可以检查给定 svn 修订版本的依赖关系?在那次修订中,它按我想要的方式工作,但我不确定最新的。

With no background on ivy dependencies I'm trying to build nutch with solr 4.0, but I'm not sure how to change the nutch ivy dependency on solr in the ivy.xml:

<dependency org="org.apache.solr" name="solr-solrj" *rev="**1.4.1**"*
conf="*->default" />

I've no clue on where those revisions are set, as they certainly don't correspond to svn revisions. Neither do they correspond to maven versions (the version would be 4.0-SNAPSHOT). So where would I typically find the available ivy revisions?
Also, is it possible to checkout the dependency against a given svn revision? At that revision it works as I want, but I'm not sure about the latest instead.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走走停停 2024-11-13 04:56:14

它们也不对应于 maven 版本(版本为 4.0-SNAPSHOT)。那么我通常会在哪里找到可用的常春藤修订版?

假的,它们是对应的。

So where would I typically find the available ivy revisions? 

Maven 中央存储库(Maven 中央中的 solr回购协议

此外,是否可以检查给定 svn 修订版本的依赖关系?
mvn install 到本地,然后参考你的快照。
对于 Solr:

<dependency org="org.apache.solr" name="solr-solrj" rev="4.0-SNAPSHOT"
            conf="*->default"/>

Neither do they correspond to maven versions (the version would be 4.0-SNAPSHOT). So where would I typically find the available ivy revisions?

False, they correspond.

So where would I typically find the available ivy revisions? 

Maven central repo (solr in maven central repo)

Also, is it possible to checkout the dependency against a given svn revision?
mvn install locally, and then refer to your snapshot.
For Solr:

<dependency org="org.apache.solr" name="solr-solrj" rev="4.0-SNAPSHOT"
            conf="*->default"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文