在maven中解压依赖
我在 maven 中有以下依赖项
<dependency>
<groupId>org.hyperic</groupId>
<artifactId>sigar-dist</artifactId>
<version>1.6.5.132</version>
<type>zip</type>
</dependency>
这会在我的存储库中创建 sigar-dist-1.6.5.132.zip
。 我在这里看到了这个问题,但是我仍然无法使其工作。
如何解压缩 sigar-dist.zip 并将内容放入项目中的目录中?我必须执行什么 mvn 调用才能使其正常工作?
I have the following dependency in maven
<dependency>
<groupId>org.hyperic</groupId>
<artifactId>sigar-dist</artifactId>
<version>1.6.5.132</version>
<type>zip</type>
</dependency>
This creates sigar-dist-1.6.5.132.zip
in my repository.
I have seen this question here, however I still can't make it work.
How can I unzip the sigar-dist.zip and place the content in a directory in my project? What is the mvn call I have to do to make it work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
dependency:unpack-dependency
来完成:参考:
依赖项:unpack-dependency
You can do it with
dependencies:unpack-dependencies
:Reference:
dependency:unpack-dependencies
只是@Sean Patrick Floyd 的回答的后续,
这是我下载和解压 tomcat 的最后一个 pom.xml
just a follow up on answer from @Sean Patrick Floyd
this is my final pom.xml to download and unpack tomcat