pom.xml 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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.4.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. <dependency>
  79. <groupId>org.apache.shiro</groupId>
  80. <artifactId>shiro-spring</artifactId>
  81. <version>1.5.2</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-lang3</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.hikvision.ga</groupId>
  89. <artifactId>artemis-http-client</artifactId>
  90. <version>1.1.3</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.projectlombok</groupId>
  94. <artifactId>lombok</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-swagger2</artifactId>
  99. <version>2.9.2</version>
  100. <exclusions>
  101. <exclusion>
  102. <groupId>io.swagger</groupId>
  103. <artifactId>swagger-models</artifactId>
  104. </exclusion>
  105. </exclusions>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.github.xiaoymin</groupId>
  109. <artifactId>knife4j-spring-boot-starter</artifactId>
  110. <version>2.0.4</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>net.sf.json-lib</groupId>
  114. <artifactId>json-lib</artifactId>
  115. <version>2.4</version>
  116. <classifier>jdk15</classifier>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-websocket</artifactId>
  121. </dependency>
  122. <!--MQTT依赖-->
  123. <dependency>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-starter-integration</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework.integration</groupId>
  129. <artifactId>spring-integration-mqtt</artifactId>
  130. </dependency>
  131. <!--redis-->
  132. <dependency>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-starter-data-redis</artifactId>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.apache.commons</groupId>
  138. <artifactId>commons-pool2</artifactId>
  139. </dependency>
  140. <!--短信服务-->
  141. <dependency>
  142. <groupId>com.aliyun</groupId>
  143. <artifactId>aliyun-java-sdk-core</artifactId>
  144. <version>4.1.1</version>
  145. </dependency>
  146. </dependencies>
  147. <build>
  148. <plugins>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-compiler-plugin</artifactId>
  152. <version>3.6.2</version>
  153. <configuration>
  154. <source>1.8</source>
  155. <target>1.8</target>
  156. <encoding>UTF-8</encoding>
  157. </configuration>
  158. </plugin>
  159. <plugin>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-maven-plugin</artifactId>
  162. <version>2.1.4.RELEASE</version>
  163. </plugin>
  164. </plugins>
  165. </build>
  166. </project>