Browse Source

[refactor]#更新

chenfangchao 2 years ago
parent
commit
e9a5c051e7

+ 7 - 0
pom.xml

@@ -23,6 +23,13 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
+
+    <parent>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-dependencies</artifactId>
+        <version>2.5.5</version>
+    </parent>
+
     <dependencies>
         <dependency>
             <groupId>org.projectlombok</groupId>

+ 9 - 3
simulation-track/pom.xml

@@ -7,6 +7,7 @@
         <groupId>cn.com.taiji</groupId>
         <version>1.0-SNAPSHOT</version>
     </parent>
+
     <modelVersion>4.0.0</modelVersion>
 
     <artifactId>simulation-track</artifactId>
@@ -17,16 +18,21 @@
     </properties>
 
     <dependencies>
+
         <dependency>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-web</artifactId>
-            <version>2.7.7</version>
         </dependency>
 
         <dependency>
             <groupId>org.springframework.kafka</groupId>
             <artifactId>spring-kafka</artifactId>
-            <version>2.3.13.RELEASE</version>
+            <exclusions>
+                <exclusion>
+                    <artifactId>kafka-clients</artifactId>
+                    <groupId>org.apache.kafka</groupId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
@@ -34,11 +40,11 @@
             <artifactId>kafka-clients</artifactId>
             <version>2.7.1</version>
         </dependency>
+
         <dependency>
             <groupId>cn.com.taiji</groupId>
             <artifactId>es-track-common</artifactId>
             <version>1.0-SNAPSHOT</version>
-            <scope>compile</scope>
         </dependency>
 
     </dependencies>

+ 1 - 0
simulation-track/src/main/java/cn/com/taiji/service/impl/SimulationTrackImpl.java

@@ -81,4 +81,5 @@ public class SimulationTrackImpl implements SimulationTrackService {
             kafkaTemplate.send(TopicConstants.GLOBAL_AIS,data);
         }
     }
+    
 }