Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个仅作为配置文件构建的 jar 文件。我如何在一个<dependency/>块中引用它?假设它的 groupId 是 com.mycompany,artifactId 是 test-jar,版本是 2.0,profile 是 customBuild。
<dependency/>
从您正在构建的项目中运行mvn install,它将在您的.m2目录中本地安装 jar。然后您可以使用它作为常规依赖项引用它
mvn install
.m2
<dependency> <groupId>com.mycompany</groupId> <artifactId>test-jar</artifactId> <version>2.0</version> </dependency>
在您的依赖项目中。