pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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-source</artifactId>
  12. <description>
  13. 内容管理模块
  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-sms</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.inspur</groupId>
  31. <artifactId>smsb-common-mail</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.inspur</groupId>
  35. <artifactId>smsb-common-redis</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.inspur</groupId>
  39. <artifactId>smsb-common-idempotent</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.inspur</groupId>
  43. <artifactId>smsb-common-mybatis</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.inspur</groupId>
  47. <artifactId>smsb-common-log</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.inspur</groupId>
  51. <artifactId>smsb-common-excel</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.inspur</groupId>
  55. <artifactId>smsb-common-security</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.inspur</groupId>
  59. <artifactId>smsb-common-web</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.inspur</groupId>
  63. <artifactId>smsb-common-ratelimiter</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.inspur</groupId>
  67. <artifactId>smsb-common-translation</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.inspur</groupId>
  71. <artifactId>smsb-common-sensitive</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.inspur</groupId>
  75. <artifactId>smsb-common-encrypt</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.inspur</groupId>
  79. <artifactId>smsb-common-tenant</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.inspur</groupId>
  83. <artifactId>smsb-common-websocket</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.inspur</groupId>
  87. <artifactId>smsb-system</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.inspur</groupId>
  91. <artifactId>smsb-device</artifactId>
  92. <version>5.2.3</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.inspur</groupId>
  96. <artifactId>smsb-workflow</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.inspur</groupId>
  100. <artifactId>smsb-digital-promotion</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.inspur</groupId>
  104. <artifactId>smsb-netty</artifactId>
  105. <version>5.2.3</version>
  106. </dependency>
  107. <!-- 图片质量压缩 -->
  108. <dependency>
  109. <groupId>org.jpedal</groupId>
  110. <artifactId>OpenViewerFX</artifactId>
  111. <version>6.6.14</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework</groupId>
  115. <artifactId>spring-test</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.poi</groupId>
  119. <artifactId>poi-ooxml</artifactId>
  120. <version>5.2.3</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.poi</groupId>
  124. <artifactId>poi-scratchpad</artifactId>
  125. <version>5.2.3</version>
  126. </dependency>
  127. </dependencies>
  128. </project>