132 lines
5.0 KiB
XML
132 lines
5.0 KiB
XML
<?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>2.7.15</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<groupId>com.qiuguo.iot</groupId>
|
|
<artifactId>qiuguo-iot</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>qiuguo-iot</name>
|
|
<description>qiuguo-iot</description>
|
|
<modules>
|
|
<module>iot-gateway</module>
|
|
<module>iot-common</module>
|
|
<module>iot-modules</module>
|
|
</modules>
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<spring-cloud.version>2021.0.8</spring-cloud.version>
|
|
<alibaba.nacos.version>2.1.1</alibaba.nacos.version>
|
|
<hswebframework.version>4.0.16</hswebframework.version>
|
|
<hsweb.orm.version>4.1.1</hsweb.orm.version>
|
|
<spring.cloud.version>3.1.7</spring.cloud.version>
|
|
<spring.boot.version>2.7.15</spring.boot.version>
|
|
<spring.boot.maven.plugin.version>2.7.14</spring.boot.maven.plugin.version>
|
|
<lombok.version>1.18.14</lombok.version>
|
|
<redis.boot.reactor.version>2.7.14</redis.boot.reactor.version>
|
|
<caffeine.version>2.9.3</caffeine.version>
|
|
</properties>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
<version>2021.0.1.0</version>
|
|
</dependency>
|
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
<version>2021.0.1.0</version>
|
|
</dependency>
|
|
<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>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter</artifactId>
|
|
<version>${spring.cloud.version}</version>
|
|
</dependency>
|
|
<!--下面两个bootstrap.yml启动-->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
<version>${spring.cloud.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-context</artifactId>
|
|
<version>${spring.cloud.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<version>3.1.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring.boot.maven.plugin.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>hsweb-nexus</id>
|
|
<name>Nexus Release Repository</name>
|
|
<url>https://nexus.hsweb.me/content/groups/public/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>aliyun-nexus</id>
|
|
<name>aliyun</name>
|
|
<url>https://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>tuya-maven</id>
|
|
<url>https://maven-other.tuya.com/repository/maven-public/</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>aliyun-nexus</id>
|
|
<name>aliyun</name>
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project>
|