我应该为 jar commons-lang.jar 使用哪个 pom 依赖项
如果 jar 名称中没有版本,我如何知道应该使用哪个版本的 pom 依赖项。例如 jar commons-lang.jar,我应该使用什么版本的 pom 依赖项?
以下是其在 Maven 中央存储库上的搜索结果 - http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22net.sf.staccatocommons%22%20AND%20a%3A%22commons-lang%22
How do I know which version of a pom dependency I should use if its version is not in the jar name. For example the jar commons-lang.jar, what version of the pom dependency should I use ?
Here are its search results on maven central repo - http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22net.sf.staccatocommons%22%20AND%20a%3A%22commons-lang%22
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先,使用 Apache 中的一个。
其次,你有两个选择,2.x 或 3.x 分支;通过搜索 mvnrepository.com:
2.6
3.1
如果您使用 Maven,那么您不应该“只是一个 jar”,您应该只了解 POM 依赖项。
(截至 2014 年 2 月,版本已达到 3.3.2,2.x 系列仍为 2.6。请注意,您可能在同一个应用程序中使用这两个版本,因为它们的软件包不同。)
First, use the one from Apache.
Second, you have two options, the 2.x or 3.x branches; from searching mvnrepository.com:
2.6
3.1
If you're using Maven, you shouldn't have "just a jar", you should only know about POM dependencies.
(As of Feb 2014 it's up to 3.3.2, the 2.x series is still at 2.6. Note that you may use both in the same application because of their different packages.)
虽然其他答案是正确的,但找到未知 jar 的精确匹配的一种非常方便的方法是创建 jar 的 sha1 校验和,然后进行校验和搜索,其中您所拥有的只是 jar 本身并且不包含有用的清单在底部高级搜索中的 http://search.maven.org 上或您自己的 Nexus 实例上下载中央存储库索引的存储库服务器。
顺便说一句,您在central 上的搜索不正确,因为它包含错误的groupId。这是更正后的链接:
http://search.maven。 org/#search%7Cga%7C1%7C%22commons-lang%22
While the other answers are correct a very handy way to find out exact match for an unknown jar where all you have is the jar itself and it does not contain a useful manifest is to create a sha1 checksum of the jar and then do a checksum search on http://search.maven.org in the Advanced Search at the bottom or on your own instance of a Nexus repository server that downloaded the index of the Central Repository.
And btw your search on central was incorrect since it had the wrong groupId as part of it. Here is a corrected link:
http://search.maven.org/#search%7Cga%7C1%7C%22commons-lang%22
如果您要迁移到 Maven 并且只有一堆 jar,那么您可以尝试检查这些 jar 内的
META-INF/MANIFEST.MF
文件。我刚刚打开
commons-lang.jar
并在其META-INF/MANIFEST.MF
中看到以下内容:因此您可以使用
Implementation-Version
code> 作为您在pom.xml
中的版本:If you are migrating to Maven and just have a bunch of jars then you can try examining their
META-INF/MANIFEST.MF
files inside of those jars.I've just opened
commons-lang.jar
and saw the following in itsMETA-INF/MANIFEST.MF
:So you can use
Implementation-Version
as your version inpom.xml
: