|
@@ -0,0 +1,124 @@
|
|
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
+ <version>3.3.4</version>
|
|
|
|
|
+ <relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
+ </parent>
|
|
|
|
|
+ <groupId>com.platform</groupId>
|
|
|
|
|
+ <artifactId>iot-platform</artifactId>
|
|
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
+ <packaging>pom</packaging>
|
|
|
|
|
+ <name>${project.artifactId}</name>
|
|
|
|
|
+ <description>物联中台</description>
|
|
|
|
|
+ <url/>
|
|
|
|
|
+ <licenses>
|
|
|
|
|
+ <license/>
|
|
|
|
|
+ </licenses>
|
|
|
|
|
+ <developers>
|
|
|
|
|
+ <developer/>
|
|
|
|
|
+ </developers>
|
|
|
|
|
+ <modules>
|
|
|
|
|
+ <module>iot-middle-platform-upgrade</module>
|
|
|
|
|
+ <module>iot-common</module>
|
|
|
|
|
+ </modules>
|
|
|
|
|
+ <scm>
|
|
|
|
|
+ <connection/>
|
|
|
|
|
+ <developerConnection/>
|
|
|
|
|
+ <tag/>
|
|
|
|
|
+ <url/>
|
|
|
|
|
+ </scm>
|
|
|
|
|
+ <properties>
|
|
|
|
|
+ <java.version>17</java.version>
|
|
|
|
|
+ <spring-cloud.version>2023.0.1</spring-cloud.version>
|
|
|
|
|
+ <spring-cloud-alibaba.version>2023.0.1.0</spring-cloud-alibaba.version>
|
|
|
|
|
+ </properties>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <!-- MyBatis-Plus -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
+ <version>3.5.7</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.zaxxer</groupId>
|
|
|
|
|
+ <artifactId>HikariCP</artifactId>
|
|
|
|
|
+ <version>5.0.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- MySQL Connector -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
+ <version>8.0.33</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- Nacos Discovery -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- Nacos Config -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ <optional>true</optional>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ <dependencyManagement>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
|
+ <version>${spring-cloud.version}</version>
|
|
|
|
|
+ <type>pom</type>
|
|
|
|
|
+ <scope>import</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
|
|
+ <version>${spring-cloud-alibaba.version}</version>
|
|
|
|
|
+ <type>pom</type>
|
|
|
|
|
+ <scope>import</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ </dependencyManagement>
|
|
|
|
|
+
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <jvmArguments>--enable-native-access=ALL-UNNAMED</jvmArguments>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </build>
|
|
|
|
|
+
|
|
|
|
|
+</project>
|