将一个普通的 jar 变成一个带有 Artifactory 内部 pom.xml 的 Maven jar
我需要使用由 ant 生成的 xyz.jar 。因此,传递依赖缺失。所以我有一个想法,修改 xyz.jar 以添加内部 META-INF/maven/groupId/artifactId/pom.xml 和 pom.properties 文件。
当我将它部署到 Artifactory 时,它忽略了它们并生成了自己的 pom.xml ,没有依赖项。
Artifactory 部署与 xyz.jar 文件位于同一文件夹中的 pom.xml 有何关系?
已经在这件事上浪费了太多时间......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Artifactory 可能会跳过内部 POM 的部署,因为它无法从存档中读取 POM 的物理大小(由于历史原因而完成);您可以通过查看日志中是否有类似以下内容的警告消息来验证这一点:
如果您已经创建了自定义 POM 文件,则可以将其内容粘贴到工件部署器的 POM 内容编辑器中或独立部署它;尽管第一个选项将为您带来自动检测 JAR 文件的部署坐标的好处。
Chances are that Artifactory skips the deployment of the internal POM because it cannot read the POM's physical size from the archive (done for historical reasons); You can verify this by looking at the log for a warning message along the lines of:
If you've already gone to the lengths of creating a customized POM file, you can paste it's contents in the POM content editor of the artifact deployer or deploy it independently; though the first option will give you the benefit of auto detecting the deployment coordinates for the JAR file.
将其依赖项添加到您的 pom 中可能是一个更好的主意,而不是安装第三方库来使用 Maven。
也就是说,请确保您的 pom.xml 是有效的 XML(大多数现代 IDE 可以为您验证 xml)并确保您的属性文件包含版本、组 ID 和工件 ID。
Artifactory 改变了不同版本中处理 POM 生成的方式,因此,根据您的版本,您可能有某种必须在部署时关闭的生成 pom 选项。我认为他们在新版本中有一个部署时间 pom 编辑器或类似的东西。
It might be a better idea to add it's dependencies to your pom instead of rigging a third-party library to use maven.
That being said, make sure your pom.xml is valid XML (most modern IDEs can validate xml for you) and make sure your properties file includes version, group id, and artifact id.
Artifactory has changed the way that it handles POM generation in different versions, so, depending on your version, you may have some sort of generate pom option that you have to turn off on deploy. I think they have a deploy time pom editor or something like that in the newer versions.
修改创建 xyz.jar 的 ant 以生成可运行的 jar - 该 jar 应该将其所有依赖项打包在里面。(在您的 xyz 项目中创建一个 lib 目录,并将所有 xyz 依赖的 jar 放在该目录中,然后将您的项目导出到jar 里面打包了所有的库)
可以找到如何创建 ant 脚本的分步示例 此处。
祝你好运!
modify the ant that create an xyz.jar to produce runnable jar - the jar should have all its deppendencies packaged inside.(create a lib directory in your xyz project and put all the jars xyz deppends on inside this directory, then export your project to jar with all the libraries packaged inside)
good step-by-step example how to create an ant script can be found here.
good luck!