pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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. <parent>
  5. <artifactId>voluntarydata</artifactId>
  6. <groupId>com.voluntarydata</groupId>
  7. <version>3.8.4</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <packaging>jar</packaging>
  11. <artifactId>voluntarydata-admin</artifactId>
  12. <description>
  13. web服务入口
  14. </description>
  15. <dependencies>
  16. <!-- spring-boot-devtools -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-devtools</artifactId>
  20. <optional>true</optional> <!-- 表示依赖不会传递 -->
  21. </dependency>
  22. <!-- swagger3 -->
  23. <dependency>
  24. <groupId>io.springfox</groupId>
  25. <artifactId>springfox-boot-starter</artifactId>
  26. </dependency>
  27. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  28. <dependency>
  29. <groupId>io.swagger</groupId>
  30. <artifactId>swagger-models</artifactId>
  31. <version>1.6.2</version>
  32. </dependency>
  33. <!-- Mysql驱动包 -->
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. <!-- 核心模块 -->
  39. <dependency>
  40. <groupId>com.voluntarydata</groupId>
  41. <artifactId>voluntarydata-framework</artifactId>
  42. </dependency>
  43. <!-- 定时任务 -->
  44. <dependency>
  45. <groupId>com.voluntarydata</groupId>
  46. <artifactId>voluntarydata-quartz</artifactId>
  47. </dependency>
  48. <!-- 代码生成 -->
  49. <dependency>
  50. <groupId>com.voluntarydata</groupId>
  51. <artifactId>voluntarydata-generator</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>junit</groupId>
  55. <artifactId>junit</artifactId>
  56. <version>4.13</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>cn.hutool</groupId>
  60. <artifactId>hutool-db</artifactId>
  61. <version>5.7.21</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.squareup.okhttp3</groupId>
  65. <artifactId>okhttp</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>fastjson</artifactId>
  70. <version>1.2.83</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.seleniumhq.selenium</groupId>
  74. <artifactId>selenium-java</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.seleniumhq.selenium</groupId>
  78. <artifactId>selenium-chrome-driver</artifactId>
  79. <version>3.141.59</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.jxls</groupId>
  83. <artifactId>jxls</artifactId>
  84. <version>2.7.2</version>
  85. <exclusions>
  86. <exclusion>
  87. <groupId>ch.qos.logback</groupId>
  88. <artifactId>logback-core</artifactId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.jxls</groupId>
  94. <artifactId>jxls-poi</artifactId>
  95. <version>1.3.2</version>
  96. <exclusions>
  97. <exclusion>
  98. <groupId>org.apache.poi</groupId>
  99. <artifactId>poi</artifactId>
  100. </exclusion>
  101. </exclusions>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.commons</groupId>
  105. <artifactId>commons-collections4</artifactId>
  106. <version>4.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.jxls</groupId>
  110. <artifactId>jxls-reader</artifactId>
  111. <version>2.0.6</version>
  112. <exclusions>
  113. <exclusion>
  114. <groupId>org.apache.poi</groupId>
  115. <artifactId>poi</artifactId>
  116. </exclusion>
  117. </exclusions>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.poi</groupId>
  121. <artifactId>poi-ooxml</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.commons</groupId>
  125. <artifactId>commons-text</artifactId>
  126. <version>1.8</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.poi</groupId>
  130. <artifactId>ooxml-schemas</artifactId>
  131. <version>1.1</version>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>org.apache.xmlbeans</groupId>
  135. <artifactId>xmlbeans</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <!-- html 解析 -->
  140. <dependency>
  141. <groupId>org.jsoup</groupId>
  142. <artifactId>jsoup</artifactId>
  143. <version>1.16.2</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.springframework.boot</groupId>
  147. <artifactId>spring-boot-starter-test</artifactId>
  148. <scope>test</scope>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.springframework</groupId>
  152. <artifactId>spring-test</artifactId>
  153. <scope>test</scope>
  154. </dependency>
  155. </dependencies>
  156. <build>
  157. <plugins>
  158. <plugin>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-maven-plugin</artifactId>
  161. <version>2.1.1.RELEASE</version>
  162. <configuration>
  163. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  164. </configuration>
  165. <executions>
  166. <execution>
  167. <goals>
  168. <goal>repackage</goal>
  169. </goals>
  170. </execution>
  171. </executions>
  172. </plugin>
  173. <plugin>
  174. <groupId>org.apache.maven.plugins</groupId>
  175. <artifactId>maven-war-plugin</artifactId>
  176. <version>3.1.0</version>
  177. <configuration>
  178. <failOnMissingWebXml>false</failOnMissingWebXml>
  179. <warName>${project.artifactId}</warName>
  180. </configuration>
  181. </plugin>
  182. </plugins>
  183. <finalName>${project.artifactId}</finalName>
  184. </build>
  185. </project>