pom.xml 5.8 KB

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