pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  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.5.0</version>
  9. <!-- <relativePath/> &lt;!&ndash; lookup parent from repository &ndash;&gt;-->
  10. </parent>
  11. <groupId>com.zf</groupId>
  12. <artifactId>cxzq</artifactId>
  13. <version>1.0</version>
  14. <packaging>war</packaging>
  15. <name>cxzq</name>
  16. <description>慈溪征迁安置项目</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <mybatisplus.version>3.3.1</mybatisplus.version>
  20. <mssql.version>4.0</mssql.version>
  21. <druid.version>1.1.13</druid.version>
  22. <hutool.version>5.7.14</hutool.version>
  23. <shiro.version>1.4.0</shiro.version>
  24. <commons.lang.version>2.6</commons.lang.version>
  25. <commons.fileupload.version>1.2.2</commons.fileupload.version>
  26. <commons.io.version>2.5</commons.io.version>
  27. <commons.codec.version>1.10</commons.codec.version>
  28. <commons.configuration.version>1.10</commons.configuration.version>
  29. <gson.version>2.8.5</gson.version>
  30. <joda.time.version>2.9.9</joda.time.version>
  31. <activiti.version>7.0.0.Beta2</activiti.version>
  32. <guava.version>29.0-jre</guava.version>
  33. <easypoi.version>4.4.0</easypoi.version>
  34. </properties>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-aop</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.google.guava</groupId>
  46. <artifactId>guava</artifactId>
  47. <version>${guava.version}</version>
  48. </dependency>
  49. <!--金仓数据库驱动-->
  50. <dependency>
  51. <groupId>cn.com.kingbase</groupId>
  52. <artifactId>kingbase8</artifactId>
  53. <version>8.6.0</version>
  54. </dependency>
  55. <!--mssql驱动-->
  56. <dependency>
  57. <groupId>com.microsoft.sqlserver</groupId>
  58. <artifactId>mssql-jdbc</artifactId>
  59. <version>7.0.0.jre8</version>
  60. <scope>runtime</scope>
  61. </dependency>
  62. <!--<dependency>
  63. <groupId>com.microsoft.sqlserver</groupId>
  64. <artifactId>sqljdbc4</artifactId>
  65. <version>${mssql.version}</version>
  66. <scope>runtime</scope>
  67. </dependency>-->
  68. <!--druid数据库连接池-->
  69. <dependency>
  70. <groupId>com.alibaba</groupId>
  71. <artifactId>druid-spring-boot-starter</artifactId>
  72. <version>${druid.version}</version>
  73. </dependency>
  74. <!--hutool工具集合-->
  75. <dependency>
  76. <groupId>cn.hutool</groupId>
  77. <artifactId>hutool-all</artifactId>
  78. <version>${hutool.version}</version>
  79. </dependency>
  80. <!--图片验证码-->
  81. <dependency>
  82. <groupId>com.github.axet</groupId>
  83. <artifactId>kaptcha</artifactId>
  84. <version>0.0.9</version>
  85. </dependency>
  86. <!-- shiro 安全框架-->
  87. <dependency>
  88. <groupId>org.apache.shiro</groupId>
  89. <artifactId>shiro-core</artifactId>
  90. <version>${shiro.version}</version>
  91. </dependency>
  92. <!-- shiro缓存 -->
  93. <dependency>
  94. <groupId>org.apache.shiro</groupId>
  95. <artifactId>shiro-ehcache</artifactId>
  96. <version>${shiro.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.shiro</groupId>
  100. <artifactId>shiro-spring</artifactId>
  101. <version>${shiro.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.google.code.gson</groupId>
  105. <artifactId>gson</artifactId>
  106. <version>${gson.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>commons-lang</groupId>
  110. <artifactId>commons-lang</artifactId>
  111. <version>${commons.lang.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>commons-fileupload</groupId>
  115. <artifactId>commons-fileupload</artifactId>
  116. <version>${commons.fileupload.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>commons-io</groupId>
  120. <artifactId>commons-io</artifactId>
  121. <version>${commons.io.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>commons-codec</groupId>
  125. <artifactId>commons-codec</artifactId>
  126. <version>${commons.codec.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>commons-configuration</groupId>
  130. <artifactId>commons-configuration</artifactId>
  131. <version>${commons.configuration.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>joda-time</groupId>
  135. <artifactId>joda-time</artifactId>
  136. <version>${joda.time.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.projectlombok</groupId>
  140. <artifactId>lombok</artifactId>
  141. <optional>true</optional>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-starter-tomcat</artifactId>
  146. <scope>provided</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-starter-test</artifactId>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-starter</artifactId>
  156. </dependency>
  157. <!-- spring boot 热部署配置-->
  158. <dependency>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-devtools</artifactId>
  161. <optional>true</optional>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.baomidou</groupId>
  165. <artifactId>mybatis-plus-boot-starter</artifactId>
  166. <version>${mybatisplus.version}</version>
  167. </dependency>
  168. <!-- 使用实体校验注解 springboot 2.3.0 以后不会自动引入jar包,所以要添加以下maven-->
  169. <dependency>
  170. <groupId>org.springframework.boot</groupId>
  171. <artifactId>spring-boot-starter-validation</artifactId>
  172. </dependency>
  173. <!-- easypoi excel工具 -->
  174. <dependency>
  175. <groupId>cn.afterturn</groupId>
  176. <artifactId>easypoi-base</artifactId>
  177. <version>${easypoi.version}</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>cn.afterturn</groupId>
  181. <artifactId>easypoi-web</artifactId>
  182. <version>${easypoi.version}</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>cn.afterturn</groupId>
  186. <artifactId>easypoi-annotation</artifactId>
  187. <version>${easypoi.version}</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>zwdd</groupId>
  191. <artifactId>zwdd-sdk-java</artifactId>
  192. <version>1.2.0</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.httpcomponents</groupId>
  196. <artifactId>httpclient</artifactId>
  197. <version>4.5.13</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>com.alibaba</groupId>
  201. <artifactId>fastjson</artifactId>
  202. <version>1.2.79</version>
  203. </dependency>
  204. <!-- minio -->
  205. <dependency>
  206. <groupId>io.minio</groupId>
  207. <artifactId>minio</artifactId>
  208. <version>8.4.3</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>com.squareup.okhttp3</groupId>
  212. <artifactId>okhttp</artifactId>
  213. <version>4.10.0</version>
  214. </dependency>
  215. <!-- minio -->
  216. <!-- <dependency>-->
  217. <!-- <groupId>org.jetbrains</groupId>-->
  218. <!-- <artifactId>annotations</artifactId>-->
  219. <!-- <version>RELEASE</version>-->
  220. <!-- <scope>compile</scope>-->
  221. <!-- </dependency>-->
  222. </dependencies>
  223. <repositories>
  224. <repository>
  225. <id>aliyunmaven</id>
  226. <name>阿里云公共仓库</name>
  227. <url>https://maven.aliyun.com/repository/public</url>
  228. </repository>
  229. <repository>
  230. <id>spring-plugin</id>
  231. <name>阿里云公共仓库 spring-plugin</name>
  232. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  233. </repository>
  234. <repository>
  235. <id>spring</id>
  236. <url>https://maven.aliyun.com/repository/spring</url>
  237. <releases>
  238. <enabled>true</enabled>
  239. </releases>
  240. <snapshots>
  241. <enabled>true</enabled>
  242. </snapshots>
  243. </repository>
  244. <repository>
  245. <id>osgeo</id>
  246. <name>Open Source Geospatial Foundation Repository</name>
  247. <url>https://repo.osgeo.org/repository/release/</url>
  248. </repository>
  249. <repository>
  250. <snapshots>
  251. <enabled>true</enabled>
  252. </snapshots>
  253. <id>boundless</id>
  254. <name>Boundless Maven Repository</name>
  255. <url>https://repo.boundlessgeo.com/main/</url>
  256. </repository>
  257. <repository>
  258. <id>hibernate-spatial</id>
  259. <name>this artifact is located at Geomajas repository</name>
  260. <url>http://maven.geomajas.org/</url>
  261. </repository>
  262. </repositories>
  263. <build>
  264. <plugins>
  265. <plugin>
  266. <groupId>org.springframework.boot</groupId>
  267. <artifactId>spring-boot-maven-plugin</artifactId>
  268. <configuration>
  269. <fork>true</fork><!--热部署必须添加这个配置-->
  270. <excludes>
  271. <exclude>
  272. <groupId>org.projectlombok</groupId>
  273. <artifactId>lombok</artifactId>
  274. </exclude>
  275. </excludes>
  276. </configuration>
  277. </plugin>
  278. </plugins>
  279. <!-- <plugins>-->
  280. <!-- <plugin>-->
  281. <!-- <groupId>org.springframework.boot</groupId>-->
  282. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  283. <!-- <version>2.7.0</version>-->
  284. <!-- <configuration>-->
  285. <!-- <fork>true</fork>&lt;!&ndash;热部署必须添加这个配置&ndash;&gt;-->
  286. <!-- <excludes>-->
  287. <!-- <exclude>-->
  288. <!-- <groupId>org.projectlombok</groupId>-->
  289. <!-- <artifactId>lombok</artifactId>-->
  290. <!-- </exclude>-->
  291. <!-- </excludes>-->
  292. <!-- </configuration>-->
  293. <!-- </plugin>-->
  294. <!-- <plugin>-->
  295. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  296. <!-- <artifactId>maven-surefire-plugin</artifactId>-->
  297. <!-- <configuration>-->
  298. <!-- <argLine>-Dfile.encoding=UTF-8 ${jacocoArgLine}</argLine>-->
  299. <!-- <testFailureIgnore>true</testFailureIgnore>-->
  300. <!-- </configuration>-->
  301. <!-- <version>2.22.1</version>-->
  302. <!-- </plugin>-->
  303. <!-- &lt;!&ndash;jacoco 统计自动化代码覆盖率&ndash;&gt;-->
  304. <!-- <plugin>-->
  305. <!-- <groupId>org.jacoco</groupId>-->
  306. <!-- <artifactId>jacoco-maven-plugin</artifactId>-->
  307. <!-- <version>0.8.6</version>-->
  308. <!-- <configuration>-->
  309. <!-- <skip>false</skip>-->
  310. <!-- <includes></includes>-->
  311. <!-- </configuration>-->
  312. <!-- <executions>-->
  313. <!-- <execution>-->
  314. <!-- <id>default-prepare-agent</id>-->
  315. <!-- <goals>-->
  316. <!-- <goal>prepare-agent</goal>-->
  317. <!-- </goals>-->
  318. <!-- <configuration>-->
  319. <!-- <propertyName>jacocoArgLine</propertyName>-->
  320. <!-- </configuration>-->
  321. <!-- </execution>-->
  322. <!-- <execution>-->
  323. <!-- <id>default-report</id>-->
  324. <!-- <phase>prepare-package</phase>-->
  325. <!-- <goals>-->
  326. <!-- <goal>report</goal>-->
  327. <!-- </goals>-->
  328. <!-- </execution>-->
  329. <!-- </executions>-->
  330. <!-- </plugin>-->
  331. <!-- <plugin>-->
  332. <!-- <groupId>org.codehaus.mojo</groupId>-->
  333. <!-- <artifactId>sonar-maven-plugin</artifactId>-->
  334. <!-- </plugin>-->
  335. <!-- </plugins>-->
  336. </build>
  337. </project>