pom.xml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.hywa</groupId>
  7. <artifactId>forest-map</artifactId>
  8. <version>1.0</version>
  9. <packaging>jar</packaging>
  10. <name>forest-map</name>
  11. <description>Demo project for Spring Boot</description>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.0.2.RELEASE</version>
  16. <relativePath/> <!-- lookup parent from repository -->
  17. </parent>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <java.version>1.8</java.version>
  22. <shiro.version>1.3.2</shiro.version>
  23. <fastJson.version>1.2.47</fastJson.version>
  24. <mybatis.version>1.3.1</mybatis.version>
  25. <pagehelper.version>1.2.4</pagehelper.version>
  26. <jxl.version>2.6.12</jxl.version>
  27. <druid.version>1.1.6</druid.version>
  28. <common.version>2.5.0</common.version>
  29. <jackson.version>2.9.4</jackson.version>
  30. <docker.image.prefix>base_data</docker.image.prefix>
  31. <dockerfile-maven-plugin.version>1.3.6</dockerfile-maven-plugin.version>
  32. <commons-net.version>3.1</commons-net.version>
  33. <guava.version>23.0</guava.version>
  34. <swagger.version>2.8.0</swagger.version>
  35. <poi.version>3.14</poi.version>
  36. <poi.ooxml.version>3.14</poi.ooxml.version>
  37. <commons.io.version>2.5</commons.io.version>
  38. </properties>
  39. <dependencies>
  40. <dependency>
  41. <groupId>io.springfox</groupId>
  42. <artifactId>springfox-swagger2</artifactId>
  43. <version>${swagger.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.springfox</groupId>
  47. <artifactId>springfox-swagger-ui</artifactId>
  48. <version>${swagger.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>commons-net</groupId>
  52. <artifactId>commons-net</artifactId>
  53. <version>${commons-net.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.fasterxml.jackson.core</groupId>
  57. <artifactId>jackson-core</artifactId>
  58. <version>${jackson.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.fasterxml.jackson.core</groupId>
  62. <artifactId>jackson-annotations</artifactId>
  63. <version>${jackson.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-web</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-aop</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-redis</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>mysql</groupId>
  84. <artifactId>mysql-connector-java</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.shiro</groupId>
  88. <artifactId>shiro-spring</artifactId>
  89. <version>${shiro.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.commons</groupId>
  93. <artifactId>commons-pool2</artifactId>
  94. <version>${common.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.slf4j</groupId>
  98. <artifactId>slf4j-api</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-devtools</artifactId>
  103. <optional>true</optional>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-freemarker</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.mybatis.spring.boot</groupId>
  111. <artifactId>mybatis-spring-boot-starter</artifactId>
  112. <version>${mybatis.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>net.sourceforge.jexcelapi</groupId>
  116. <artifactId>jxl</artifactId>
  117. <version>${jxl.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.alibaba</groupId>
  121. <artifactId>fastjson</artifactId>
  122. <version>${fastJson.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.github.pagehelper</groupId>
  126. <artifactId>pagehelper-spring-boot-starter</artifactId>
  127. <version>${pagehelper.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.projectlombok</groupId>
  131. <artifactId>lombok</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.alibaba</groupId>
  135. <artifactId>druid</artifactId>
  136. <version>${druid.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.google.guava</groupId>
  140. <artifactId>guava</artifactId>
  141. <version>${guava.version}</version>
  142. </dependency>
  143. <!-- httpclient -->
  144. <dependency>
  145. <groupId>org.apache.httpcomponents</groupId>
  146. <artifactId>httpmime</artifactId>
  147. <version>4.5.3</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.apache.httpcomponents</groupId>
  151. <artifactId>httpclient</artifactId>
  152. <version>4.5.9</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.springframework.amqp</groupId>
  156. <artifactId>spring-rabbit</artifactId>
  157. <version>2.0.2.RELEASE</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.poi</groupId>
  161. <artifactId>poi</artifactId>
  162. <version>${poi.version}</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.poi</groupId>
  166. <artifactId>poi-ooxml</artifactId>
  167. <version>${poi.ooxml.version}</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>commons-io</groupId>
  171. <artifactId>commons-io</artifactId>
  172. <version>${commons.io.version}</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.belerweb</groupId>
  176. <artifactId>pinyin4j</artifactId>
  177. <version>2.5.0</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.opencsv</groupId>
  181. <artifactId>opencsv</artifactId>
  182. <version>4.4</version>
  183. </dependency>
  184. </dependencies>
  185. <build>
  186. <plugins>
  187. <plugin>
  188. <groupId>org.springframework.boot</groupId>
  189. <artifactId>spring-boot-maven-plugin</artifactId>
  190. </plugin>
  191. <plugin>
  192. <groupId>org.mybatis.generator</groupId>
  193. <artifactId>mybatis-generator-maven-plugin</artifactId>
  194. <version>1.3.2</version>
  195. <configuration>
  196. <configurationFile>src/main/resources/mybatis-generator/generatorConfig.xml
  197. </configurationFile>
  198. <verbose>true</verbose>
  199. <overwrite>true</overwrite>
  200. </configuration>
  201. <executions>
  202. <execution>
  203. <id>Generate MyBatis Artifacts</id>
  204. <goals>
  205. <goal>generate</goal>
  206. </goals>
  207. </execution>
  208. </executions>
  209. <dependencies>
  210. <dependency>
  211. <groupId>org.mybatis.generator</groupId>
  212. <artifactId>mybatis-generator-core</artifactId>
  213. <version>1.3.2</version>
  214. </dependency>
  215. </dependencies>
  216. </plugin>
  217. </plugins>
  218. </build>
  219. </project>