pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.sprivacy</groupId>
  6. <artifactId>pms</artifactId>
  7. <version>1.0</version>
  8. <!-- <packaging>war</packaging>-->
  9. <packaging>jar</packaging>
  10. <name>pms</name>
  11. <description>Personnel management platform</description>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>2.0.5.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. <swagger.version>2.8.0</swagger.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. <scope>runtime</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-tomcat</artifactId>
  37. <!--<scope>provided</scope>-->
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>druid-spring-boot-starter</artifactId>
  47. <version>1.1.10</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.springfox</groupId>
  51. <artifactId>springfox-swagger2</artifactId>
  52. <version>${swagger.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.springfox</groupId>
  56. <artifactId>springfox-swagger-ui</artifactId>
  57. <version>${swagger.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. <version>1.2.51</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.poi</groupId>
  66. <artifactId>poi</artifactId>
  67. <version>4.0.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.poi</groupId>
  71. <artifactId>poi-ooxml</artifactId>
  72. <version>4.0.0</version>
  73. </dependency>
  74. <!-- 新入 -->
  75. <dependency>
  76. <groupId>cglib</groupId>
  77. <artifactId>cglib</artifactId>
  78. <version>3.1</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.commons</groupId>
  82. <artifactId>commons-compress</artifactId>
  83. <version>1.17</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.xmlbeans</groupId>
  87. <artifactId>xmlbeans</artifactId>
  88. <version>3.0.2</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-configuration-processor</artifactId>
  93. <optional>true</optional>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.commons</groupId>
  97. <artifactId>commons-lang3</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.baomidou</groupId>
  101. <artifactId>mybatis-plus-boot-starter</artifactId>
  102. <version>3.0.5</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.projectlombok</groupId>
  106. <artifactId>lombok</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>joda-time</groupId>
  110. <artifactId>joda-time</artifactId>
  111. </dependency>
  112. <!--<dependency>-->
  113. <!--<groupId>com.baomidou</groupId>-->
  114. <!--<artifactId>mybatis-plus</artifactId>-->
  115. <!--<version>2.1.8</version>-->
  116. <!--</dependency>-->
  117. <dependency>
  118. <groupId>com.squareup.okhttp3</groupId>
  119. <artifactId>okhttp</artifactId>
  120. <version>3.11.0</version>
  121. </dependency>
  122. <!-- zip & rar 包 -->
  123. <!-- https://mvnrepository.com/artifact/com.github.junrar/junrar -->
  124. <dependency>
  125. <groupId>com.github.junrar</groupId>
  126. <artifactId>junrar</artifactId>
  127. <version>0.7</version>
  128. </dependency>
  129. <!-- https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j -->
  130. <dependency>
  131. <groupId>net.lingala.zip4j</groupId>
  132. <artifactId>zip4j</artifactId>
  133. <version>1.3.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.alibaba</groupId>
  137. <artifactId>easyexcel</artifactId>
  138. <version>1.0.3</version>
  139. </dependency>
  140. <!--<dependency>-->
  141. <!--<groupId>commons-logging</groupId>-->
  142. <!--<artifactId>commons-logging</artifactId>-->
  143. <!--<version>1.2</version>-->
  144. <!--</dependency>-->
  145. <!--<dependency>-->
  146. <!--<groupId>org.apache.commons</groupId>-->
  147. <!--<artifactId>commons-vfs2</artifactId>-->
  148. <!--<version>2.2</version>-->
  149. <!--</dependency>-->
  150. <!--<dependency>-->
  151. <!--<groupId>org.apache.commons</groupId>-->
  152. <!--<artifactId>commons-io</artifactId>-->
  153. <!--<version>1.3.2</version>-->
  154. <!--<scope>test</scope>-->
  155. <!--</dependency>-->
  156. <!-- 导入zip解压包 -->
  157. <!--<dependency>-->
  158. <!--<groupId>org.apache.ant</groupId>-->
  159. <!--<artifactId>ant</artifactId>-->
  160. <!--<version>1.6.5</version>-->
  161. <!--</dependency>-->
  162. <!--&lt;!&ndash;<dependency>&ndash;&gt;-->
  163. <!--&lt;!&ndash;<groupId>ant</groupId>&ndash;&gt;-->
  164. <!--&lt;!&ndash;<artifactId>ant</artifactId>&ndash;&gt;-->
  165. <!--&lt;!&ndash;<version>1.6.5</version>&ndash;&gt;-->
  166. <!--&lt;!&ndash;</dependency>&ndash;&gt;-->
  167. <!--&lt;!&ndash; new &ndash;&gt;-->
  168. <!--&lt;!&ndash; https://mvnrepository.com/artifact/com.github.junrar/junrar &ndash;&gt;-->
  169. <!--<dependency>-->
  170. <!--<groupId>com.github.junrar</groupId>-->
  171. <!--<artifactId>junrar</artifactId>-->
  172. <!--<version>4.0.0</version>-->
  173. <!--</dependency>-->
  174. <!--&lt;!&ndash; 导入rar解压包 &ndash;&gt;-->
  175. <!--<dependency>-->
  176. <!--<groupId>com.github.junrar</groupId>-->
  177. <!--<artifactId>junrar</artifactId>-->
  178. <!--<version>3.1.0</version>-->
  179. <!--</dependency>-->
  180. <!--  <dependency>-->
  181. <!--<groupId>commons-fileupload</groupId>-->
  182. <!--<artifactId>commons-fileupload</artifactId>-->
  183. <!--<version>1.3.1</version>-->
  184. <!--</dependency>-->
  185. <!--<dependency>-->
  186. <!--<groupId>commons-io</groupId>-->
  187. <!--<artifactId>commons-io</artifactId>-->
  188. <!--<version>2.4</version>-->
  189. <!--</dependency>-->
  190. <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
  191. <!--<dependency>
  192. <groupId>commons-logging</groupId>
  193. <artifactId>commons-logging</artifactId>
  194. <version>1.2</version>
  195. </dependency>
  196. &lt;!&ndash; https://mvnrepository.com/artifact/org.gnu/gnu-crypto &ndash;&gt;
  197. <dependency>
  198. <groupId>org.gnu</groupId>
  199. <artifactId>gnu-crypto</artifactId>
  200. <version>2.0.1</version>
  201. </dependency>
  202. &lt;!&ndash; https://mvnrepository.com/artifact/commons-io/commons-io &ndash;&gt;
  203. <dependency>
  204. <groupId>commons-io</groupId>
  205. <artifactId>commons-io</artifactId>
  206. <version>2.6</version>
  207. </dependency>
  208. &lt;!&ndash; https://mvnrepository.com/artifact/com.github.junrar/junrar &ndash;&gt;
  209. <dependency>
  210. <groupId>com.github.junrar</groupId>
  211. <artifactId>junrar</artifactId>
  212. <version>3.1.0</version>
  213. </dependency>-->
  214. <!--&lt;!&ndash;处理2003 excel&ndash;&gt;-->
  215. <!--<dependency>-->
  216. <!--<groupId>org.apache.poi</groupId>-->
  217. <!--<artifactId>poi</artifactId>-->
  218. <!--<version>3.16</version>-->
  219. <!--</dependency>-->
  220. <!--&lt;!&ndash;处理2007 excel&ndash;&gt;-->
  221. <!--<dependency>-->
  222. <!--<groupId>org.apache.poi</groupId>-->
  223. <!--<artifactId>poi-ooxml</artifactId>-->
  224. <!--<version>3.16</version>-->
  225. <!--</dependency>-->
  226. </dependencies>
  227. <build>
  228. <plugins>
  229. <plugin>
  230. <groupId>org.springframework.boot</groupId>
  231. <artifactId>spring-boot-maven-plugin</artifactId>
  232. </plugin>
  233. </plugins>
  234. </build>
  235. </project>