maven 本地工程代替jar包
时间: 2023-11-28 14:46:17 浏览: 90
可以使用Maven将本地工程打包成jar包,然后在其他项目中引用该jar包。具体步骤如下:
1. 在本地工程的pom.xml文件中添加以下配置,用于打包成jar包:
```xml
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.example.MainClass</mainClass> <!-- 如果有主类,需要指定 -->
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
```
2. 在本地工程的根目录下执行以下命令,将工程打包成jar包:
```shell
mvn clean package
```
3. 在其他项目的pom.xml文件中添加以下配置,用于引用本地工程的jar包:
```xml
<dependencies>
<dependency>
<groupId>com.example</groupId>
<artifactId>example</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/example.jar</systemPath>
</dependency>
</dependencies>
```
其中,`${project.basedir}/lib/example.jar`为本地工程打包生成的jar包路径。
阅读全文