pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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>org.jetbrains</groupId>-->
  191. <!-- <artifactId>annotations</artifactId>-->
  192. <!-- <version>RELEASE</version>-->
  193. <!-- <scope>compile</scope>-->
  194. <!-- </dependency>-->
  195. </dependencies>
  196. <repositories>
  197. <repository>
  198. <id>aliyunmaven</id>
  199. <name>阿里云公共仓库</name>
  200. <url>https://maven.aliyun.com/repository/public</url>
  201. </repository>
  202. <repository>
  203. <id>spring-plugin</id>
  204. <name>阿里云公共仓库 spring-plugin</name>
  205. <url>https://maven.aliyun.com/repository/spring-plugin</url>
  206. </repository>
  207. <repository>
  208. <id>spring</id>
  209. <url>https://maven.aliyun.com/repository/spring</url>
  210. <releases>
  211. <enabled>true</enabled>
  212. </releases>
  213. <snapshots>
  214. <enabled>true</enabled>
  215. </snapshots>
  216. </repository>
  217. <repository>
  218. <id>osgeo</id>
  219. <name>Open Source Geospatial Foundation Repository</name>
  220. <url>https://repo.osgeo.org/repository/release/</url>
  221. </repository>
  222. <repository>
  223. <snapshots>
  224. <enabled>true</enabled>
  225. </snapshots>
  226. <id>boundless</id>
  227. <name>Boundless Maven Repository</name>
  228. <url>https://repo.boundlessgeo.com/main/</url>
  229. </repository>
  230. <repository>
  231. <id>hibernate-spatial</id>
  232. <name>this artifact is located at Geomajas repository</name>
  233. <url>http://maven.geomajas.org/</url>
  234. </repository>
  235. </repositories>
  236. <build>
  237. <plugins>
  238. <plugin>
  239. <groupId>org.springframework.boot</groupId>
  240. <artifactId>spring-boot-maven-plugin</artifactId>
  241. <configuration>
  242. <fork>true</fork><!--热部署必须添加这个配置-->
  243. <excludes>
  244. <exclude>
  245. <groupId>org.projectlombok</groupId>
  246. <artifactId>lombok</artifactId>
  247. </exclude>
  248. </excludes>
  249. </configuration>
  250. </plugin>
  251. </plugins>
  252. </build>
  253. </project>