pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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.kym</groupId>
  30. <artifactId>car-wash-jdbc</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.github.wechatpay-apiv3</groupId>
  35. <artifactId>wechatpay-java</artifactId>
  36. <version>0.2.11</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-amqp</artifactId>
  41. <version>3.2.5</version>
  42. </dependency>
  43. <!-- 阿里云物联⽹云端SDK 同步调用版 -->
  44. <dependency>
  45. <groupId>com.aliyun</groupId>
  46. <artifactId>iot20180120</artifactId>
  47. <version>5.1.0</version>
  48. </dependency>
  49. <!-- 阿里云物联⽹云端SDK 异步调用版 -->
  50. <!-- <dependency>-->
  51. <!-- <groupId>com.aliyun</groupId>-->
  52. <!-- <artifactId>alibabacloud-iot20180120</artifactId>-->
  53. <!-- <version>1.0.4</version>-->
  54. <!-- </dependency>-->
  55. <!-- 阿里云消息服务 MNS -->
  56. <dependency>
  57. <groupId>com.aliyun.mns</groupId>
  58. <artifactId>aliyun-sdk-mns</artifactId>
  59. <version>1.1.11</version>
  60. </dependency>
  61. <!-- amqp 1.0 qpid client -->
  62. <dependency>
  63. <groupId>org.apache.qpid</groupId>
  64. <artifactId>qpid-jms-client</artifactId>
  65. <version>0.57.0</version>
  66. </dependency>
  67. </dependencies>
  68. </project>