pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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. <properties>
  7. <java.version>1.8</java.version>
  8. </properties>
  9. <groupId>com.usky</groupId>
  10. <artifactId>JX_Cover</artifactId>
  11. <version>1.0-SNAPSHOT</version>
  12. <parent>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <groupId>org.springframework.boot</groupId>
  15. <version>2.1.5.RELEASE</version>
  16. </parent>
  17. <dependencies>
  18. <!--jsr 303-->
  19. <!-- <dependency>-->
  20. <!-- <groupId>javax.validation</groupId>-->
  21. <!-- <artifactId>validation-api</artifactId>-->
  22. <!-- <version>1.1.0.Final</version>-->
  23. <!-- </dependency>-->
  24. <!-- &lt;!&ndash; hibernate validator&ndash;&gt;-->
  25. <!-- <dependency>-->
  26. <!-- <groupId>org.hibernate</groupId>-->
  27. <!-- <artifactId>hibernate-validator</artifactId>-->
  28. <!-- <version>5.2.0.Final</version>-->
  29. <!-- </dependency>-->
  30. <!--spring配置-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-configuration-processor</artifactId>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.alibaba</groupId>
  38. <artifactId>fastjson</artifactId>
  39. <version>1.2.35</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-aop</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.tomcat</groupId>
  51. <artifactId>tomcat-juli</artifactId>
  52. <version>8.5.51</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>druid-spring-boot-starter</artifactId>
  57. <version>1.1.22</version>
  58. </dependency>
  59. <!-- JPA-->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-data-jpa</artifactId>
  63. </dependency>
  64. <!--导入连接MySQL的依赖 -->
  65. <dependency>
  66. <groupId>mysql</groupId>
  67. <artifactId>mysql-connector-java</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-jdbc</artifactId>
  72. </dependency>
  73. <!--thymeleaf启动器-->
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.github.theborakompanioni</groupId>
  80. <artifactId>thymeleaf-extras-shiro</artifactId>
  81. <version>2.0.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.auth0</groupId>
  85. <artifactId>java-jwt</artifactId>
  86. <version>3.3.0</version>
  87. </dependency>
  88. <!--test-->
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-test</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <!--shiro依赖-->
  95. <!--shiro-->
  96. <dependency>
  97. <groupId>org.apache.shiro</groupId>
  98. <artifactId>shiro-spring-boot-starter</artifactId>
  99. <version>1.7.1</version>
  100. </dependency>
  101. <!-- shiro-redis -->
  102. <dependency>
  103. <groupId>org.crazycake</groupId>
  104. <artifactId>shiro-redis</artifactId>
  105. <version>3.1.0</version>
  106. <exclusions>
  107. <exclusion>
  108. <groupId>org.apache.shiro</groupId>
  109. <artifactId>shiro-core</artifactId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.commons</groupId>
  115. <artifactId>commons-lang3</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.hikvision.ga</groupId>
  119. <artifactId>artemis-http-client</artifactId>
  120. <version>1.1.3</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.projectlombok</groupId>
  124. <artifactId>lombok</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>io.springfox</groupId>
  128. <artifactId>springfox-swagger2</artifactId>
  129. <version>2.9.2</version>
  130. <exclusions>
  131. <exclusion>
  132. <groupId>io.swagger</groupId>
  133. <artifactId>swagger-models</artifactId>
  134. </exclusion>
  135. </exclusions>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.github.xiaoymin</groupId>
  139. <artifactId>knife4j-spring-boot-starter</artifactId>
  140. <version>2.0.4</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>net.sf.json-lib</groupId>
  144. <artifactId>json-lib</artifactId>
  145. <version>2.4</version>
  146. <classifier>jdk15</classifier>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-starter-websocket</artifactId>
  151. </dependency>
  152. <!--MQTT依赖-->
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-starter-integration</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework.integration</groupId>
  159. <artifactId>spring-integration-mqtt</artifactId>
  160. </dependency>
  161. <!--redis-->
  162. <dependency>
  163. <groupId>org.springframework.boot</groupId>
  164. <artifactId>spring-boot-starter-data-redis</artifactId>
  165. </dependency>
  166. <dependency>
  167. <groupId>redis.clients</groupId>
  168. <artifactId>jedis</artifactId>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.commons</groupId>
  172. <artifactId>commons-pool2</artifactId>
  173. </dependency>
  174. <!--短信服务-->
  175. <dependency>
  176. <groupId>com.aliyun</groupId>
  177. <artifactId>aliyun-java-sdk-core</artifactId>
  178. <version>4.1.1</version>
  179. </dependency>
  180. </dependencies>
  181. <build>
  182. <plugins>
  183. <plugin>
  184. <groupId>org.apache.maven.plugins</groupId>
  185. <artifactId>maven-compiler-plugin</artifactId>
  186. <version>3.6.2</version>
  187. <configuration>
  188. <source>1.8</source>
  189. <target>1.8</target>
  190. <encoding>UTF-8</encoding>
  191. </configuration>
  192. </plugin>
  193. <plugin>
  194. <groupId>org.springframework.boot</groupId>
  195. <artifactId>spring-boot-maven-plugin</artifactId>
  196. <version>2.1.5.RELEASE</version>
  197. </plugin>
  198. </plugins>
  199. </build>
  200. </project>