pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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.puboot</groupId>
  6. <artifactId>qzxrzxxd</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>pb-cms</name>
  10. <description>https://www.puboot.com</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.2.6.RELEASE</version>
  15. <relativePath/>
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-aop</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-redis</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-configuration-processor</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.commons</groupId>
  50. <artifactId>commons-lang3</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.alibaba</groupId>
  58. <artifactId>druid-spring-boot-starter</artifactId>
  59. <version>1.1.21</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.shiro</groupId>
  63. <artifactId>shiro-spring</artifactId>
  64. <version>1.4.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.github.theborakompanioni</groupId>
  68. <artifactId>thymeleaf-extras-shiro</artifactId>
  69. <version>2.0.0</version>
  70. </dependency>
  71. <!--获取时间的架包-->
  72. <dependency>
  73. <groupId>joda-time</groupId>
  74. <artifactId>joda-time</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.crazycake</groupId>
  78. <artifactId>shiro-redis</artifactId>
  79. <version>3.2.3</version>
  80. <exclusions>
  81. <exclusion>
  82. <artifactId>shiro-core</artifactId>
  83. <groupId>org.apache.shiro</groupId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.github.penggle</groupId>
  89. <artifactId>kaptcha</artifactId>
  90. <version>2.3.2</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.alibaba</groupId>
  94. <artifactId>fastjson</artifactId>
  95. <version>1.2.66</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.qiniu</groupId>
  99. <artifactId>qiniu-java-sdk</artifactId>
  100. <version>7.2.23</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.aliyun.oss</groupId>
  104. <artifactId>aliyun-sdk-oss</artifactId>
  105. <version>3.8.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.jsoup</groupId>
  109. <artifactId>jsoup</artifactId>
  110. <version>1.9.2</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.projectlombok</groupId>
  114. <artifactId>lombok</artifactId>
  115. <optional>true</optional>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.baomidou</groupId>
  119. <artifactId>mybatis-plus-boot-starter</artifactId>
  120. <version>3.2.0</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.commons</groupId>
  124. <artifactId>commons-collections4</artifactId>
  125. <version>4.4</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.poi</groupId>
  129. <artifactId>poi-ooxml</artifactId>
  130. <version>3.17</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi</artifactId>
  135. <version>3.17</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>commons-fileupload</groupId>
  139. <artifactId>commons-fileupload</artifactId>
  140. <version>1.3.1</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>commons-io</groupId>
  144. <artifactId>commons-io</artifactId>
  145. <version>2.4</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.httpcomponents</groupId>
  149. <artifactId>httpclient</artifactId>
  150. <version>4.5.5</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.httpcomponents</groupId>
  154. <artifactId>httpmime</artifactId>
  155. <version>4.5.1</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.httpcomponents</groupId>
  159. <artifactId>httpclient</artifactId>
  160. <version>4.5.13</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.springframework</groupId>
  164. <artifactId>spring-test</artifactId>
  165. <version>5.0.8.RELEASE</version>
  166. </dependency>
  167. </dependencies>
  168. <build>
  169. <finalName>qzzx_xjzt_web</finalName>
  170. <plugins>
  171. <plugin>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-maven-plugin</artifactId>
  174. </plugin>
  175. </plugins>
  176. <resources>
  177. <resource>
  178. <directory>src/main/resources</directory>
  179. </resource>
  180. </resources>
  181. </build>
  182. </project>