Browse Source

修复 client-offline 的 pom 构建工具

Signed-off-by: 流放深圳 <291987541@qq.com>
流放深圳 11 months ago
parent
commit
d09c4aefb4
1 changed files with 2 additions and 10 deletions
  1. 2 10
      licence/client-offline/pom.xml

+ 2 - 10
licence/client-offline/pom.xml

@@ -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>