东方网 文促会 后端代码
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pom.xml 8.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.2.RELEASE</version>
  9. </parent>
  10. <groupId>com.xdf</groupId>
  11. <artifactId>creative</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>creative</name>
  14. <description>wenchuangban project for Spring Boot</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-aop</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-tomcat</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-jdbc</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-json</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-validation</artifactId>
  47. </dependency>
  48. <!-- 获取配置文件内容 注入实体get方法-->
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-configuration-processor</artifactId>
  52. <optional>true</optional>
  53. </dependency>
  54. <!-- alibaba start -->
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>druid-spring-boot-starter</artifactId>
  58. <version>1.1.20</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>fastjson</artifactId>
  63. <version>1.2.62</version>
  64. </dependency>
  65. <!-- swagger start 可通过注解生成接口文档,包括接口名、请求方法、参数、返回信息等等-->
  66. <dependency>
  67. <groupId>io.springfox</groupId>
  68. <artifactId>springfox-swagger2</artifactId>
  69. <version>2.9.2</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>io.springfox</groupId>
  73. <artifactId>springfox-swagger-ui</artifactId>
  74. <version>2.9.2</version>
  75. </dependency>
  76. <!-- apache commons start -->
  77. <dependency>
  78. <groupId>org.apache.commons</groupId>
  79. <artifactId>commons-lang3</artifactId>
  80. <version>3.9</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.commons</groupId>
  84. <artifactId>commons-collections4</artifactId>
  85. <version>4.4</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>commons-net</groupId>
  89. <artifactId>commons-net</artifactId>
  90. <version>3.6</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.commons</groupId>
  94. <artifactId>commons-pool2</artifactId>
  95. <version>2.7.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>commons-io</groupId>
  99. <artifactId>commons-io</artifactId>
  100. <version>2.6</version>
  101. </dependency>
  102. <!-- JWT+SHIRO-->
  103. <dependency>
  104. <groupId>com.auth0</groupId>
  105. <artifactId>java-jwt</artifactId>
  106. <version>3.8.3</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.shiro</groupId>
  110. <artifactId>shiro-spring</artifactId>
  111. <version>1.4.0</version>
  112. </dependency>
  113. <!-- mybatis-plus begin -->
  114. <dependency>
  115. <groupId>com.baomidou</groupId>
  116. <artifactId>mybatis-plus-boot-starter</artifactId>
  117. <version>3.1.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.velocity</groupId>
  121. <artifactId>velocity</artifactId>
  122. <version>1.7</version>
  123. <scope>provided</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>mysql</groupId>
  127. <artifactId>mysql-connector-java</artifactId>
  128. <version>5.1.47</version>
  129. </dependency>
  130. <!-- 对象属性复制 -->
  131. <dependency>
  132. <groupId>org.mapstruct</groupId>
  133. <artifactId>mapstruct</artifactId>
  134. <version>1.3.0.Final</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.mapstruct</groupId>
  138. <artifactId>mapstruct-processor</artifactId>
  139. <version>1.3.0.Final</version>
  140. <scope>provided</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.projectlombok</groupId>
  144. <artifactId>lombok</artifactId>
  145. <optional>true</optional>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-starter-test</artifactId>
  150. <scope>test</scope>
  151. <exclusions>
  152. <exclusion>
  153. <groupId>org.junit.vintage</groupId>
  154. <artifactId>junit-vintage-engine</artifactId>
  155. </exclusion>
  156. </exclusions>
  157. </dependency>
  158. <dependency>
  159. <groupId>junit</groupId>
  160. <artifactId>junit</artifactId>
  161. <version>4.12</version>
  162. <scope>test</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>commons-codec</groupId>
  166. <artifactId>commons-codec</artifactId>
  167. <version>1.11</version>
  168. </dependency>
  169. <!-- 分页支持pageHelper -->
  170. <dependency>
  171. <groupId>cn.hutool</groupId>
  172. <artifactId>hutool-all</artifactId>
  173. <version>4.6.10</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>io.projectreactor</groupId>
  177. <artifactId>reactor-core</artifactId>
  178. <version>3.2.5.RELEASE</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.quartz-scheduler</groupId>
  182. <artifactId>quartz</artifactId>
  183. <version>2.3.0</version>
  184. <exclusions>
  185. <exclusion>
  186. <groupId>com.mchange</groupId>
  187. <artifactId>c3p0</artifactId>
  188. </exclusion>
  189. </exclusions>
  190. </dependency>
  191. <!-- kaptcha验证码 -->
  192. <dependency>
  193. <groupId>com.github.penggle</groupId>
  194. <artifactId>kaptcha</artifactId>
  195. <version>2.3.2</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.apache.poi</groupId>
  199. <artifactId>poi</artifactId>
  200. <version>RELEASE</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.poi</groupId>
  204. <artifactId>poi-ooxml</artifactId>
  205. <version>RELEASE</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.apache.httpcomponents</groupId>
  209. <artifactId>httpclient</artifactId>
  210. <version>4.5.4</version>
  211. </dependency>
  212. </dependencies>
  213. <build>
  214. <finalName>cultural_server</finalName>
  215. <plugins>
  216. <plugin>
  217. <groupId>org.springframework.boot</groupId>
  218. <artifactId>spring-boot-maven-plugin</artifactId>
  219. </plugin>
  220. <plugin>
  221. <groupId>org.apache.maven.plugins</groupId>
  222. <artifactId>maven-resources-plugin</artifactId>
  223. <version>3.0.2</version>
  224. <configuration>
  225. <encoding>UTF-8</encoding>
  226. </configuration>
  227. </plugin>
  228. <plugin>
  229. <groupId>org.apache.maven.plugins</groupId>
  230. <artifactId>maven-surefire-plugin</artifactId>
  231. <version>2.22.1</version>
  232. <configuration>
  233. <skipTests>true</skipTests>
  234. </configuration>
  235. </plugin>
  236. </plugins>
  237. </build>
  238. </project>