pom.xml 6.6 KB

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