|
@@ -10,11 +10,27 @@
|
|
|
</parent>
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>iot-starter-feign</artifactId>
|
|
<artifactId>iot-starter-feign</artifactId>
|
|
|
-
|
|
|
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
<properties>
|
|
<properties>
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <!-- RPC 远程调用相关 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- 工具相关 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>jakarta.validation</groupId>
|
|
|
|
|
+ <artifactId>jakarta.validation-api</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
</project>
|
|
</project>
|