pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  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.6.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>net.diaowen</groupId>
  12. <artifactId>dwsurvey-oss-vue</artifactId>
  13. <version>v.5.4.1-Beta</version>
  14. <packaging>jar</packaging>
  15. <name>dwsurvey</name>
  16. <description>DWSurvey project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <repositories>
  21. <repository>
  22. <snapshots>
  23. <enabled>true</enabled>
  24. </snapshots>
  25. <id>DWSurveyRepostiory</id>
  26. <name>DWSurveyRepostiory</name>
  27. <url>https://maven.aliyun.com/repository/public</url>
  28. </repository>
  29. </repositories>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>com.vaadin.external.google</groupId>
  41. <artifactId>android-json</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. <scope>test</scope>
  45. </dependency>
  46. <!--添加tomcat依赖模块.-->
  47. <!--<dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-tomcat</artifactId>
  50. <scope>provided</scope>
  51. </dependency>-->
  52. <!-- 添加servlet依赖模块 -->
  53. <dependency>
  54. <groupId>javax.servlet</groupId>
  55. <artifactId>javax.servlet-api</artifactId>
  56. </dependency>
  57. <!-- 添加jstl标签库依赖模块 -->
  58. <dependency>
  59. <groupId>javax.servlet</groupId>
  60. <artifactId>jstl</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.tuckey</groupId>
  64. <artifactId>urlrewritefilter</artifactId>
  65. <version>4.0.3</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.sitemesh</groupId>
  69. <artifactId>sitemesh</artifactId>
  70. <version>3.0.1</version>
  71. </dependency>
  72. <!-- 项目JAR包-->
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-jpa</artifactId>
  76. <exclusions>
  77. <exclusion>
  78. <groupId>org.apache.tomcat</groupId>
  79. <artifactId>tomcat-jdbc</artifactId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-jdbc</artifactId>
  86. </dependency>
  87. <!-- 添加Hibernate支持 -->
  88. <dependency>
  89. <groupId>org.hibernate</groupId>
  90. <artifactId>hibernate-entitymanager</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.hibernate</groupId>
  94. <artifactId>hibernate-core</artifactId>
  95. </dependency>
  96. <!-- mysql数据库连接 -->
  97. <dependency>
  98. <groupId>mysql</groupId>
  99. <artifactId>mysql-connector-java</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.alibaba</groupId>
  103. <artifactId>druid-spring-boot-starter</artifactId>
  104. <version>1.2.16</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.alibaba</groupId>
  108. <artifactId>fastjson</artifactId>
  109. <version>1.2.83</version>
  110. </dependency>
  111. <!-- commons-lang3 工具类-->
  112. <dependency>
  113. <groupId>org.apache.commons</groupId>
  114. <artifactId>commons-lang3</artifactId>
  115. <version>3.4</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>xerces</groupId>
  119. <artifactId>xercesImpl</artifactId>
  120. <version>2.12.2</version>
  121. </dependency>
  122. <!-- 日志包-->
  123. <dependency>
  124. <groupId>ch.qos.logback</groupId>
  125. <artifactId>logback-classic</artifactId>
  126. <version>1.2.3</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.shiro</groupId>
  130. <artifactId>shiro-all</artifactId>
  131. <version>1.10.0</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>cglib</groupId>
  135. <artifactId>cglib-nodep</artifactId>
  136. <version>2.2.2</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.httpcomponents</groupId>
  140. <artifactId>httpcore</artifactId>
  141. <version>4.4.5</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.httpcomponents</groupId>
  145. <artifactId>httpclient</artifactId>
  146. <version>4.5.13</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.httpcomponents</groupId>
  150. <artifactId>httpclient-cache</artifactId>
  151. <version>4.5.2</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.apache.httpcomponents</groupId>
  155. <artifactId>httpcore-nio</artifactId>
  156. <version>4.4.5</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.apache.httpcomponents</groupId>
  160. <artifactId>httpmime</artifactId>
  161. <version>4.5.2</version>
  162. </dependency>
  163. <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
  164. <dependency>
  165. <groupId>commons-logging</groupId>
  166. <artifactId>commons-logging</artifactId>
  167. <version>1.2</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>commons-codec</groupId>
  171. <artifactId>commons-codec</artifactId>
  172. <version>1.11</version>
  173. <scope>compile</scope>
  174. </dependency>
  175. <dependency>
  176. <groupId>commons-lang</groupId>
  177. <artifactId>commons-lang</artifactId>
  178. <version>2.6</version>
  179. </dependency>
  180. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  181. <dependency>
  182. <groupId>org.apache.poi</groupId>
  183. <artifactId>poi-ooxml</artifactId>
  184. <version>5.0.0</version>
  185. </dependency>
  186. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-scratchpad -->
  187. <dependency>
  188. <groupId>org.apache.poi</groupId>
  189. <artifactId>poi-scratchpad</artifactId>
  190. <version>5.2.1</version>
  191. </dependency>
  192. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  193. <dependency>
  194. <groupId>org.jsoup</groupId>
  195. <artifactId>jsoup</artifactId>
  196. <version>1.14.2</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>com.google.zxing</groupId>
  200. <artifactId>core</artifactId>
  201. <version>3.0.0</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>com.google.zxing</groupId>
  205. <artifactId>javase</artifactId>
  206. <version>3.0.0</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.owasp.esapi</groupId>
  210. <artifactId>esapi</artifactId>
  211. <version>2.4.0.0</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>net.sf.dozer</groupId>
  215. <artifactId>dozer</artifactId>
  216. <version>5.3.2</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>net.sf.json-lib</groupId>
  220. <artifactId>json-lib</artifactId>
  221. <version>2.4</version>
  222. <classifier>jdk15</classifier>
  223. </dependency>
  224. <!-- https://mvnrepository.com/artifact/org.json/json -->
  225. <dependency>
  226. <groupId>org.json</groupId>
  227. <artifactId>json</artifactId>
  228. <version>20210307</version>
  229. </dependency>
  230. <!-- https://mvnrepository.com/artifact/com.octo.captcha/jcaptcha-all -->
  231. <dependency>
  232. <groupId>com.octo.captcha</groupId>
  233. <artifactId>jcaptcha-all</artifactId>
  234. <version>1.0-RC6</version>
  235. <exclusions>
  236. <exclusion>
  237. <artifactId>spring</artifactId>
  238. <groupId>org.springframework</groupId>
  239. </exclusion>
  240. </exclusions>
  241. </dependency>
  242. <!-- https://mvnrepository.com/artifact/org.threeten/threetenbp -->
  243. <dependency>
  244. <groupId>org.threeten</groupId>
  245. <artifactId>threetenbp</artifactId>
  246. <version>0.7.2</version>
  247. </dependency>
  248. <!-- https://mvnrepository.com/artifact/antlr/antlr -->
  249. <dependency>
  250. <groupId>antlr</groupId>
  251. <artifactId>antlr</artifactId>
  252. <version>2.7.7</version>
  253. </dependency>
  254. <!-- https://mvnrepository.com/artifact/org.antlr/antlr-runtime -->
  255. <dependency>
  256. <groupId>org.antlr</groupId>
  257. <artifactId>antlr-runtime</artifactId>
  258. <version>3.0.1</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>javax.servlet.jsp</groupId>
  262. <artifactId>jsp-api</artifactId>
  263. <version>2.1</version>
  264. <scope>provided</scope>
  265. </dependency>
  266. <dependency>
  267. <groupId>org.xeustechnologies</groupId>
  268. <artifactId>jcl-core</artifactId>
  269. <version>2.4</version>
  270. </dependency>
  271. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  272. <dependency>
  273. <groupId>commons-io</groupId>
  274. <artifactId>commons-io</artifactId>
  275. <version>2.7</version>
  276. </dependency>
  277. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  278. <dependency>
  279. <groupId>commons-fileupload</groupId>
  280. <artifactId>commons-fileupload</artifactId>
  281. <version>1.3.3</version>
  282. </dependency>
  283. <!-- https://mvnrepository.com/artifact/eu.bitwalker/UserAgentUtils -->
  284. <dependency>
  285. <groupId>eu.bitwalker</groupId>
  286. <artifactId>UserAgentUtils</artifactId>
  287. <version>1.21</version>
  288. </dependency>
  289. <!-- https://mvnrepository.com/artifact/org.apache.tika/tika-core -->
  290. <dependency>
  291. <groupId>org.apache.tika</groupId>
  292. <artifactId>tika-core</artifactId>
  293. <version>2.4.1</version>
  294. </dependency>
  295. </dependencies>
  296. <build>
  297. <plugins>
  298. <plugin>
  299. <groupId>org.springframework.boot</groupId>
  300. <artifactId>spring-boot-maven-plugin</artifactId>
  301. <configuration>
  302. <mainClass>net.diaowen.dwsurvey.DwsurveyApplication</mainClass>
  303. </configuration>
  304. </plugin>
  305. </plugins>
  306. </build>
  307. </project>