pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.sifu.sfcc</groupId>
  6. <artifactId>sfcc-fileupload</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>sfcc-fileupload</name>
  10. <description>sfcc-fileupload project for sfcc</description>
  11. <parent>
  12. <groupId>com.sifu.sfcc</groupId>
  13. <artifactId>sfcc</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.sifu.sfcc</groupId>
  19. <artifactId>sfcc-mbg</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.sifu.sfcc</groupId>
  23. <artifactId>sfcc-common</artifactId>
  24. </dependency>
  25. <!--redis依赖配置-->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. </dependency>
  30. <!--集成消息队列-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-amqp</artifactId>
  34. </dependency>
  35. <!--分页依赖-->
  36. <dependency>
  37. <groupId>com.github.pagehelper</groupId>
  38. <artifactId>pagehelper-spring-boot-starter</artifactId>
  39. <version>1.2.12</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.thymeleaf</groupId>
  43. <artifactId>thymeleaf-spring5</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.thymeleaf.extras</groupId>
  47. <artifactId>thymeleaf-extras-java8time</artifactId>
  48. </dependency>
  49. <!--JDBC-->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-jdbc</artifactId>
  53. </dependency>
  54. <!--MySQL驱动-->
  55. <!--需要注意:需要添加版本,默认版本太高,可能报错-->
  56. <dependency>
  57. <groupId>mysql</groupId>
  58. <artifactId>mysql-connector-java</artifactId>
  59. <version>8.0.20</version>
  60. <scope>runtime</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba</groupId>
  64. <artifactId>druid</artifactId>
  65. <version>1.1.20</version>
  66. </dependency>
  67. <!--mybatis-spring-->
  68. <!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter -->
  69. <dependency>
  70. <groupId>org.mybatis.spring.boot</groupId>
  71. <artifactId>mybatis-spring-boot-starter</artifactId>
  72. <version>2.1.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>javax</groupId>
  76. <artifactId>javaee-api</artifactId>
  77. <version>8.0</version>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-lang</groupId>
  82. <artifactId>commons-lang</artifactId>
  83. <version>2.6</version>
  84. <scope>compile</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>fastjson</artifactId>
  89. <version>1.2.38</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-websocket</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework</groupId>
  97. <artifactId>spring-websocket</artifactId>
  98. <version>5.1.8.RELEASE</version>
  99. <scope>compile</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>commons-io</groupId>
  103. <artifactId>commons-io</artifactId>
  104. <version>2.4</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.projectlombok</groupId>
  108. <artifactId>lombok</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.jdom</groupId>
  112. <artifactId>jdom</artifactId>
  113. <version>1.1</version>
  114. <scope>compile</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>junit</groupId>
  118. <artifactId>junit</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.spatial4j</groupId>
  122. <artifactId>spatial4j</artifactId>
  123. <version>0.5</version>
  124. </dependency>
  125. <!-- 阿里云短信 -->
  126. <!-- https://mvnrepository.com/artifact/com.github.suxingli/aliyuncs -->
  127. <dependency>
  128. <groupId>com.github.suxingli</groupId>
  129. <artifactId>aliyuncs</artifactId>
  130. <version>1.0.1</version>
  131. </dependency>
  132. <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-dysmsapi -->
  133. <dependency>
  134. <groupId>com.aliyun</groupId>
  135. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  136. <version>1.1.0</version>
  137. </dependency>
  138. </dependencies>
  139. <build>
  140. <plugins>
  141. <plugin>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-maven-plugin</artifactId>
  144. </plugin>
  145. <!--<plugin>-->
  146. <!--<groupId>com.spotify</groupId>-->
  147. <!--<artifactId>docker-maven-plugin</artifactId>-->
  148. <!--<version>${docker.maven.plugin.version}</version>-->
  149. <!--<executions>-->
  150. <!--<execution>-->
  151. <!--<id>build-image</id>-->
  152. <!--<phase>package</phase>-->
  153. <!--<goals>-->
  154. <!--<goal>build</goal>-->
  155. <!--</goals>-->
  156. <!--</execution>-->
  157. <!--</executions>-->
  158. <!--<configuration>-->
  159. <!--<imageName>sfcc/${project.artifactId}:${project.version}</imageName>-->
  160. <!--<dockerHost>${docker.host}</dockerHost>-->
  161. <!--<baseImage>java:8</baseImage>-->
  162. <!--<entryPoint>["java", "-jar","-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]-->
  163. <!--</entryPoint>-->
  164. <!--<resources>-->
  165. <!--<resource>-->
  166. <!--<targetPath>/</targetPath>-->
  167. <!--<directory>${project.build.directory}</directory>-->
  168. <!--<include>${project.build.finalName}.jar</include>-->
  169. <!--</resource>-->
  170. <!--</resources>-->
  171. <!--</configuration>-->
  172. <!--</plugin>-->
  173. </plugins>
  174. </build>
  175. </project>