| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.kym</groupId>
- <artifactId>car-wash</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>car-wash-service</artifactId>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.kym</groupId>
- <artifactId>car-wash-common</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.kym</groupId>
- <artifactId>car-wash-mapper</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.kym</groupId>
- <artifactId>car-wash-jdbc</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.github.wechatpay-apiv3</groupId>
- <artifactId>wechatpay-java</artifactId>
- <version>0.2.11</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-amqp</artifactId>
- <version>3.2.5</version>
- </dependency>
- <!-- 阿里云物联⽹云端SDK 同步调用版 -->
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>iot20180120</artifactId>
- <version>5.1.0</version>
- </dependency>
- <!-- 阿里云物联⽹云端SDK 异步调用版 -->
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>alibabacloud-iot20180120</artifactId>
- <version>1.0.4</version>
- </dependency>
- <!-- 阿里云消息服务 MNS -->
- <dependency>
- <groupId>com.aliyun.mns</groupId>
- <artifactId>aliyun-sdk-mns</artifactId>
- <version>1.1.11</version>
- </dependency>
- </dependencies>
- </project>
|