pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. <parent>
  6. <groupId>com.inspur</groupId>
  7. <artifactId>smsb-modules</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>smsb-device</artifactId>
  12. <description>
  13. smsb-device 设备模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.inspur</groupId>
  19. <artifactId>smsb-common-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.inspur</groupId>
  23. <artifactId>smsb-common-doc</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.inspur</groupId>
  27. <artifactId>smsb-common-elasticsearch</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.inspur</groupId>
  32. <artifactId>smsb-common-sms</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.inspur</groupId>
  36. <artifactId>smsb-common-mail</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.inspur</groupId>
  40. <artifactId>smsb-common-redis</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.inspur</groupId>
  44. <artifactId>smsb-common-idempotent</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.inspur</groupId>
  48. <artifactId>smsb-common-mybatis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.inspur</groupId>
  52. <artifactId>smsb-common-log</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.inspur</groupId>
  56. <artifactId>smsb-common-excel</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.inspur</groupId>
  60. <artifactId>smsb-common-security</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.inspur</groupId>
  64. <artifactId>smsb-common-web</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.inspur</groupId>
  68. <artifactId>smsb-common-ratelimiter</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.inspur</groupId>
  72. <artifactId>smsb-common-translation</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.inspur</groupId>
  76. <artifactId>smsb-common-sensitive</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.inspur</groupId>
  80. <artifactId>smsb-common-encrypt</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.inspur</groupId>
  84. <artifactId>smsb-common-tenant</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.inspur</groupId>
  88. <artifactId>smsb-common-websocket</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.inspur</groupId>
  92. <artifactId>smsb-system</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.google.guava</groupId>
  96. <artifactId>guava</artifactId>
  97. <version>31.0.1-jre</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.aizuda</groupId>
  101. <artifactId>zlm4j</artifactId>
  102. <version>1.2.5</version>
  103. </dependency>
  104. <!-- 阿里JSON解析器 -->
  105. <dependency>
  106. <groupId>com.alibaba.fastjson2</groupId>
  107. <artifactId>fastjson2</artifactId>
  108. <version>2.0.4</version>
  109. </dependency>
  110. </dependencies>
  111. </project>