pom.xml 6.8 KB

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