方式一:将jar包安装到maven本地仓库
命令
mvn install:install-file -DgroupId=com.tongweb -DartifactId=tongweb-embed -Dversion=7.0.E.4_P2 -Dfile=/E:/myProject/EexcelDownloadTest/src/main/resources/lib/tongweb-embed-7.0.E.4_P2.jar -Dpackaging=jar
参数解析:
- Dfile:插件包的位置
- DgroupId:插件在maven仓库目录标识
- DartifactId:插件在maven仓库唯一标识
- Dversion:插件版本号
- Dpackaging:插件包类型
- DgeneratePom=true 生成
.pom
文件
方式二:直接引入本地jar包
<dependency>
<groupId>com.tongweb</groupId>
<artifactId>tongweb-embed</artifactId>
<version>7.0.E.4_P2</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/tongweb-embed-7.0.E.4_P2.jar</systemPath>
</dependency>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
<classifier>exec</classifier>
</configuration>
</plugin>