有个项目用到一个github的项目,中央仓库没有相关依赖,添加到本地仓库的方式对团队其他成员又不太友好,因此改为通过配置的方式引入。
- 修改pom依赖:
<!-- java2word 本地包引入 -->
<dependency>
<groupId>java2word</groupId>
<artifactId>java2word</artifactId>
<version>3.3</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/lib/java2word-3.3.jar</systemPath>
</dependency>
- 修改编译插件配置
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>cn.cloudscope.demand.YkDemandServerApplication</mainClass>
<!--引入本地jar包-->
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
……
</build>