pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. <groupId>com.sifu.sfcc</groupId>
  7. <artifactId>sfcc-common</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>sfcc-common</name>
  11. <description>sfcc-common project for sfcc</description>
  12. <parent>
  13. <groupId>com.sifu.sfcc</groupId>
  14. <artifactId>sfcc</artifactId>
  15. <version>1.0-SNAPSHOT</version>
  16. </parent>
  17. <dependencies>
  18. <dependency>
  19. <groupId>io.springfox</groupId>
  20. <artifactId>springfox-swagger2</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>io.springfox</groupId>
  24. <artifactId>springfox-swagger-ui</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.data</groupId>
  28. <artifactId>spring-data-commons</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-all</artifactId>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  35. <dependency>
  36. <groupId>commons-io</groupId>
  37. <artifactId>commons-io</artifactId>
  38. <version>2.4</version>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator -->
  41. <dependency>
  42. <groupId>net.coobird</groupId>
  43. <artifactId>thumbnailator</artifactId>
  44. <version>0.4.8</version>
  45. </dependency>
  46. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  47. <dependency>
  48. <groupId>commons-fileupload</groupId>
  49. <artifactId>commons-fileupload</artifactId>
  50. <version>1.4</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. </dependency>
  56. <!-- 阿里云短信 -->
  57. <!-- https://mvnrepository.com/artifact/com.github.suxingli/aliyuncs -->
  58. <dependency>
  59. <groupId>com.github.suxingli</groupId>
  60. <artifactId>aliyuncs</artifactId>
  61. <version>1.0.1</version>
  62. </dependency>
  63. <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-dysmsapi -->
  64. <dependency>
  65. <groupId>com.aliyun</groupId>
  66. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  67. <version>1.1.0</version>
  68. </dependency>
  69. <!--easyexcel-->
  70. <dependency>
  71. <groupId>org.apache.poi</groupId>
  72. <artifactId>poi</artifactId>
  73. <version>3.17</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.poi</groupId>
  77. <artifactId>poi-ooxml</artifactId>
  78. <version>3.17</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.poi</groupId>
  82. <artifactId>poi-ooxml-schemas</artifactId>
  83. <version>3.17</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>cglib</groupId>
  87. <artifactId>cglib</artifactId>
  88. <version>3.1</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.slf4j</groupId>
  92. <artifactId>slf4j-api</artifactId>
  93. <version>1.7.26</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.ehcache</groupId>
  97. <artifactId>ehcache</artifactId>
  98. <version>3.4.0</version>
  99. </dependency>
  100. <!--easyexcel-->
  101. <!-- 后端模拟前端监听websocket -->
  102. <dependency>
  103. <groupId>org.java-websocket</groupId>
  104. <artifactId>Java-WebSocket</artifactId>
  105. <version>1.5.2</version>
  106. </dependency>
  107. </dependencies>
  108. </project>