pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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>SDPartySchool</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依赖,官网描述支持spring data JPA 和hibernate-->
  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. <!-- 导入测试包 -->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  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. <!--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.apache.commons</groupId>
  74. <artifactId>commons-lang3</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.hikvision.ga</groupId>
  78. <artifactId>artemis-http-client</artifactId>
  79. <version>1.1.3</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>io.springfox</groupId>
  87. <artifactId>springfox-swagger2</artifactId>
  88. <version>2.9.2</version>
  89. <exclusions>
  90. <exclusion>
  91. <groupId>io.swagger</groupId>
  92. <artifactId>swagger-models</artifactId>
  93. </exclusion>
  94. </exclusions>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.github.xiaoymin</groupId>
  98. <artifactId>knife4j-spring-boot-starter</artifactId>
  99. <version>2.0.4</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>net.sf.json-lib</groupId>
  103. <artifactId>json-lib</artifactId>
  104. <version>2.4</version>
  105. <classifier>jdk15</classifier>
  106. </dependency>
  107. <!--Mqtt-->
  108. <dependency>
  109. <groupId>org.eclipse.paho</groupId>
  110. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  111. <version>1.2.2</version>
  112. </dependency>
  113. <!-- <dependency>-->
  114. <!-- <groupId>org.springframework.boot</groupId>-->
  115. <!-- <artifactId>spring-boot-starter-websocket</artifactId>-->
  116. <!-- <version>1.3.5.RELEASE</version>-->
  117. <!-- </dependency>-->
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-websocket</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>cn.hutool</groupId>
  124. <artifactId>hutool-all</artifactId>
  125. <version>5.5.2</version>
  126. </dependency>
  127. <!-- https://github.com/infiniteautomation/BACnet4J -->
  128. <dependency>
  129. <groupId>com.infiniteautomation</groupId>
  130. <artifactId>bacnet4j</artifactId>
  131. <version>6.0.0-SNAPSHOT</version>
  132. </dependency>
  133. </dependencies>
  134. <build>
  135. <plugins>
  136. <plugin>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-maven-plugin</artifactId>
  139. </plugin>
  140. <!-- <plugin>-->
  141. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  142. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  143. <!-- <configuration>-->
  144. <!-- <source>1.8</source>-->
  145. <!-- <target>1.8</target>-->
  146. <!-- </configuration>-->
  147. <!-- </plugin>-->
  148. </plugins>
  149. </build>
  150. </project>