pom.xml 11 KB

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