From a7461c42ce771582836cf5c59e61a9787d4cc46e Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Sat, 03 Jul 2021 18:33:39 +0800
Subject: [PATCH] 修改pom,打包时将本地导入的jar 打入工程jar

---
 pom.xml |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/pom.xml b/pom.xml
index 817c3da..890cbe2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -229,6 +229,28 @@
             <artifactId>FFmpeg-windows-x86_64</artifactId>
             <version>2.0.1.1</version>
         </dependency>
+        <!--本地jar包导入-->
+        <dependency>
+            <groupId>bacprov-jdk15on</groupId>
+            <artifactId>bacprov-jdk15on</artifactId>
+            <version>1.60</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/bcprov-jdk15on-1.60.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>fastjson-1.2.70</groupId>
+            <artifactId>fastjson-1.2.70</artifactId>
+            <version>1.2.70</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/fastjson-1.2.70.jar</systemPath>
+        </dependency>
+        <dependency>
+            <groupId>pinecone-1.4</groupId>
+            <artifactId>pinecone-1.4</artifactId>
+            <version>1.4</version>
+            <scope>system</scope>
+            <systemPath>${project.basedir}/src/main/resources/lib/pinecone-1.4.jar</systemPath>
+        </dependency>
     </dependencies>
 
     <build>
@@ -252,6 +274,7 @@
                     <version>${spring.boot.version}</version>
                     <configuration>
                         <finalName>${project.build.finalName}</finalName>
+                        <includeSystemScope>true</includeSystemScope>
                     </configuration>
                     <executions>
                         <execution>

--
Gitblit v1.9.3