From 6c920885a9bc407f2f05e204ae9769631c4c80e7 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Wed, 22 Dec 2021 15:02:56 +0800
Subject: [PATCH] 20211216

---
 pom.xml |   54 +++++++++++++++++++++++++++++++++++++++++++++---------
 1 files changed, 45 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 34ed72e..ed17d46 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,6 @@
     </properties>
 
     <dependencies>
-
         <dependency>
             <groupId>org.mapstruct</groupId>
             <artifactId>mapstruct</artifactId>
@@ -237,6 +236,14 @@
         </dependency>
 
         <dependency>
+            <groupId>com.sunlight</groupId>
+            <artifactId>tron-sdk</artifactId>
+            <version>1.0-SNAPSHOT</version>
+            <scope>system</scope>
+            <systemPath>${basedir}/lib/tron-sdk-1.0.jar</systemPath>
+        </dependency>
+
+        <dependency>
             <groupId>org.tron.trident</groupId>
             <artifactId>abi</artifactId>
             <version>0.3.0</version>
@@ -260,16 +267,42 @@
         </dependency>
 
         <dependency>
-            <groupId>com.sunlight</groupId>
-            <artifactId>tron-sdk</artifactId>
-            <version>1.0-SNAPSHOT</version>
-            <scope>system</scope>
-            <systemPath>${basedir}/lib/tron-sdk-1.0.jar</systemPath>
-        </dependency>
-
-        <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-amqp</artifactId>
+        </dependency>
+
+        <!-- jave 核心依赖 -->
+        <dependency>
+            <groupId>ws.schild</groupId>
+            <artifactId>jave-core</artifactId>
+            <version>2.4.6</version>
+        </dependency>
+
+        <!-- 根据不同操作系统引入不同FFmpeg包 -->
+
+        <!-- window32位 FFmpeg -->
+        <dependency>
+            <groupId>ws.schild</groupId>
+            <artifactId>jave-native-win32</artifactId>
+            <version>2.4.6</version>
+        </dependency>
+        <!-- window64位 FFmpeg -->
+        <dependency>
+            <groupId>ws.schild</groupId>
+            <artifactId>jave-native-win64</artifactId>
+            <version>2.4.6</version>
+        </dependency>
+        <!-- linux64位 FFmpeg -->
+        <dependency>
+            <groupId>ws.schild</groupId>
+            <artifactId>jave-native-linux64</artifactId>
+            <version>2.4.6</version>
+        </dependency>
+        <!-- macos64位 FFmpeg -->
+        <dependency>
+            <groupId>ws.schild</groupId>
+            <artifactId>jave-native-osx64</artifactId>
+            <version>2.4.6</version>
         </dependency>
     </dependencies>
 
@@ -278,6 +311,9 @@
             <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
+                <configuration>
+                    <includeSystemScope>true</includeSystemScope>
+                </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>

--
Gitblit v1.9.1