pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.github.microservice</groupId>
  7. <artifactId>MSRunnable</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../../super/MSRunnable</relativePath>
  10. </parent>
  11. <groupId>com.github.microservice.card</groupId>
  12. <artifactId>OneCardIotServer</artifactId>
  13. <name>OneCardIotServer</name>
  14. <properties>
  15. <java.version>17</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.github.microservice</groupId>
  20. <artifactId>PCore</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <!--应用中心客户端-->
  24. <dependency>
  25. <groupId>com.github.microservice.components</groupId>
  26. <artifactId>ApplicationClient</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <!-- 推送中心 -->
  30. <dependency>
  31. <groupId>com.github.microservice.components</groupId>
  32. <artifactId>PushCenterClient</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.github.microservice.card</groupId>
  37. <artifactId>OneCardIotClient</artifactId>
  38. <version>${project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.github.microservice.components</groupId>
  42. <artifactId>RedisData</artifactId>
  43. <version>${project.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.github.microservice.components</groupId>
  47. <artifactId>MongodbData</artifactId>
  48. <version>${project.version}</version>
  49. </dependency>
  50. <!-- <dependency>-->
  51. <!-- <groupId>com.github.microservice.auth</groupId>-->
  52. <!-- <artifactId>AuthClient</artifactId>-->
  53. <!-- <version>${project.version}</version>-->
  54. <!-- </dependency>-->
  55. <dependency>
  56. <groupId>org.projectlombok</groupId>
  57. <artifactId>lombok</artifactId>
  58. <version>${lombok.version}</version>
  59. </dependency>
  60. <!--二维码-->
  61. <dependency>
  62. <groupId>com.google.zxing</groupId>
  63. <artifactId>core</artifactId>
  64. <version>3.4.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.google.zxing</groupId>
  68. <artifactId>javase</artifactId>
  69. <version>3.4.1</version>
  70. </dependency>
  71. <!-- 拼音 -->
  72. <dependency>
  73. <groupId>com.belerweb</groupId>
  74. <artifactId>pinyin4j</artifactId>
  75. <version>2.5.1</version>
  76. </dependency>
  77. <!-- excel导出 -->
  78. <dependency>
  79. <groupId>org.apache.poi</groupId>
  80. <artifactId>poi</artifactId>
  81. <version>4.1.2</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.poi</groupId>
  85. <artifactId>poi-ooxml</artifactId>
  86. <version>4.1.2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.poi</groupId>
  90. <artifactId>poi-ooxml-schemas</artifactId>
  91. <version>4.1.2</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>cn.afterturn</groupId>
  95. <artifactId>easypoi-base</artifactId>
  96. <version>4.1.0</version>
  97. </dependency>
  98. <!--阿里云 oss-->
  99. <dependency>
  100. <groupId>com.aliyun</groupId>
  101. <artifactId>aliyun-java-sdk-core</artifactId>
  102. <version>4.6.0</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.aliyun</groupId>
  106. <artifactId>aliyun-java-sdk-sts</artifactId>
  107. <version>3.1.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.aliyun.oss</groupId>
  111. <artifactId>aliyun-sdk-oss</artifactId>
  112. <version>3.14.0</version>
  113. </dependency>
  114. <!-- artemis -->
  115. <dependency>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-starter-artemis</artifactId>
  118. <version>3.2.4</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.zswl</groupId>
  122. <artifactId>ConfigModel</artifactId>
  123. <version>1.0.0-SNAPSHOT</version>
  124. </dependency>
  125. </dependencies>
  126. </project>