pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.kym</groupId>
  8. <artifactId>car-wash</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>car-wash-service</artifactId>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.kym</groupId>
  20. <artifactId>car-wash-common</artifactId>
  21. <version>0.0.1-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.kym</groupId>
  25. <artifactId>car-wash-mapper</artifactId>
  26. <version>0.0.1-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.github.wechatpay-apiv3</groupId>
  30. <artifactId>wechatpay-java</artifactId>
  31. <version>0.2.11</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-amqp</artifactId>
  36. <version>3.2.5</version>
  37. </dependency>
  38. <!-- 阿里云物联⽹云端SDK 同步调用版 -->
  39. <dependency>
  40. <groupId>com.aliyun</groupId>
  41. <artifactId>iot20180120</artifactId>
  42. <version>5.1.0</version>
  43. </dependency>
  44. <!-- 阿里云物联⽹云端SDK 异步调用版 -->
  45. <dependency>
  46. <groupId>com.aliyun</groupId>
  47. <artifactId>alibabacloud-iot20180120</artifactId>
  48. <version>1.0.4</version>
  49. </dependency>
  50. <!-- 阿里云消息服务 MNS -->
  51. <dependency>
  52. <groupId>com.aliyun.mns</groupId>
  53. <artifactId>aliyun-sdk-mns</artifactId>
  54. <version>1.1.11</version>
  55. </dependency>
  56. </dependencies>
  57. </project>