|
@@ -24,28 +24,20 @@
|
|
|
<!-- 引用一个本地的 JAR 文件,而不是从 Maven 的中央仓库或其他远程仓库中获取 -->
|
|
|
<scope>system</scope>
|
|
|
<!-- 指定该 JAR 文件的路径 -->
|
|
|
- <systemPath>${basedir}/src/main/resources/lib/core-1.0.0.RELEASE.jar</systemPath>
|
|
|
+ <systemPath>${project.basedir}/src/main/resources/lib/core-1.0.0.RELEASE.jar</systemPath>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
|
|
|
- <!-- 构建 -->
|
|
|
+ <!-- 构建工具 -->
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<!-- 打包插件 -->
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <!-- 把 scope 为 system 的包也打进来 -->
|
|
|
<configuration>
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
</configuration>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <goals>
|
|
|
- <goal>repackage</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|