pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.5</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.yzt</groupId>
  12. <artifactId>airconditioner-system</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>airconditioner-system</name>
  15. <description>airconditioner-system</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.projectlombok</groupId>
  30. <artifactId>lombok</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>mysql</groupId>
  34. <artifactId>mysql-connector-java</artifactId>
  35. <version>5.1.47</version>
  36. <scope>runtime</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-devtools</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. <version>3.5.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.pagehelper</groupId>
  54. <artifactId>pagehelper-spring-boot-starter</artifactId>
  55. <version>1.4.2</version>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>org.mybatis</groupId>
  59. <artifactId>mybatis-spring</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>org.mybatis</groupId>
  63. <artifactId>mybatis</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>log4j</groupId>
  69. <artifactId>log4j</artifactId>
  70. <version>1.2.17</version>
  71. </dependency>
  72. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
  73. <dependency>
  74. <groupId>org.apache.logging.log4j</groupId>
  75. <artifactId>log4j-core</artifactId>
  76. <version>2.17.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-tomcat</artifactId>
  81. </dependency>
  82. <!-- <dependency>-->
  83. <!-- <groupId>org.eclipse.paho</groupId>-->
  84. <!-- <artifactId>org.eclipse.paho.client.mqttv3</artifactId>-->
  85. <!-- <version>1.2.5</version>-->
  86. <!-- </dependency>-->
  87. <dependency>
  88. <groupId>org.springframework.integration</groupId>
  89. <artifactId>spring-integration-mqtt</artifactId>
  90. <version>5.5.11</version>
  91. </dependency>
  92. <!--mqtt 相关依赖-->
  93. <!-- <dependency>-->
  94. <!-- <groupId>org.springframework.boot</groupId>-->
  95. <!-- <artifactId>spring-boot-starter-integration</artifactId>-->
  96. <!-- </dependency>-->
  97. <!-- <dependency>-->
  98. <!-- <groupId>org.springframework.integration</groupId>-->
  99. <!-- <artifactId>spring-integration-stream</artifactId>-->
  100. <!-- </dependency>-->
  101. <!-- <dependency>-->
  102. <!-- <groupId>org.springframework.integration</groupId>-->
  103. <!-- <artifactId>spring-integration-mqtt</artifactId>-->
  104. <!-- </dependency>-->
  105. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  106. <dependency>
  107. <groupId>com.google.code.gson</groupId>
  108. <artifactId>gson</artifactId>
  109. <version>2.8.6</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.jcraft</groupId>
  113. <artifactId>jsch</artifactId>
  114. <version>0.1.55</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>net.rakugakibox.spring.boot</groupId>
  118. <artifactId>orika-spring-boot-starter</artifactId>
  119. <version>1.9.0</version>
  120. </dependency>
  121. </dependencies>
  122. <build>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-maven-plugin</artifactId>
  127. </plugin>
  128. </plugins>
  129. </build>
  130. </project>