linxk 4 gün önce
ebeveyn
işleme
b717762de5
2 değiştirilmiş dosya ile 18 ekleme ve 4 silme
  1. 17 4
      backstage-service/pom.xml
  2. 1 0
      pom.xml

+ 17 - 4
backstage-service/pom.xml

@@ -13,6 +13,8 @@
     <version>1.0.0-SNAPSHOT</version>
     <properties>
         <java.version>1.8</java.version>
+
+        <hutool.version>5.8.22</hutool.version>
     </properties>
 
     <!-- Inherit defaults from Spring Boot -->
@@ -63,17 +65,28 @@
             <scope>test</scope>
         </dependency>
 
+<!--        <dependency>-->
+<!--            <groupId>org.springframework.boot</groupId>-->
+<!--            <artifactId>spring-boot-starter-redis</artifactId>-->
+<!--&lt;!&ndash;            <version>2.7.18</version>&ndash;&gt;-->
+<!--        </dependency>-->
+
         <dependency>
             <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-redis</artifactId>
-            <version>1.3.8.RELEASE</version>
+            <artifactId>spring-boot-starter-data-redis</artifactId>
         </dependency>
 
         <dependency>
             <groupId>cn.hutool</groupId>
             <artifactId>hutool-all</artifactId>
-            <version>RELEASE</version>
-            <scope>compile</scope>
+            <version>${hutool.version}</version>
+<!--            <scope>compile</scope>-->
+        </dependency>
+
+        <dependency>
+            <groupId>redis.clients</groupId>
+            <artifactId>jedis</artifactId>
+            <version>3.3.0</version>
         </dependency>
 
 

+ 1 - 0
pom.xml

@@ -9,6 +9,7 @@
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-starter-parent</artifactId>
         <version>2.7.18</version>
+        <relativePath/>
     </parent>