我想添加一个zip文件,该文件作为对另一个maven项目的依赖项上传到maven存储库。我想知道如何才能做到这一点。
对此方面的任何帮助表示赞赏。
此致 Sarat
答案 0 :(得分:1)
如下所述定义依赖关系解决了我的问题。
<dependency>
<groupId>sampGroupID</groupId>
<artifactId>sampArtifactID</artifactId>
<version>1.0</version>
<scope>runtime</scope>
<type>zip</type>
<classifier>bundle</classifier>
</dependency>
Rudraksh