我有一个仅作为个人资料构建的jar文件。如何在<dependency/>
块中引用它?假设它的groupId是com.mycompany,artifactId是test-jar,版本是2.0,profile是customBuild。
答案 0 :(得分:0)
从正在构建运行mvn install
的项目中,它将在您的.m2
目录中本地安装jar。然后,您可以使用
<dependency>
<groupId>com.mycompany</groupId>
<artifactId>test-jar</artifactId>
<version>2.0</version>
</dependency>
在您的依赖项目中。