pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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.5.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.lm</groupId>
  12. <artifactId>big_screen</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>big_screen</name>
  15. <description>Demo project for Spring Boot</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-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-jdbc</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.springfox</groupId>
  34. <artifactId>springfox-swagger2</artifactId>
  35. <version>2.9.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>mybatis-plus-generator</artifactId>
  40. <version>3.4.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.freemarker</groupId>
  44. <artifactId>freemarker</artifactId>
  45. <version>2.3.31</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
  48. <dependency>
  49. <groupId>com.github.pagehelper</groupId>
  50. <artifactId>pagehelper-spring-boot-starter</artifactId>
  51. <version>1.4.0</version>
  52. </dependency>
  53. <!-- <dependency>-->
  54. <!-- <groupId>com.alibaba</groupId>-->
  55. <!-- <artifactId>druid</artifactId>-->
  56. <!-- <version>1.2.6</version>-->
  57. <!-- </dependency>-->
  58. <!-- <dependency>-->
  59. <!-- <groupId>com.alibaba</groupId>-->
  60. <!-- <artifactId>druid-spring-boot-starter</artifactId>-->
  61. <!-- <version>1.2.6</version>-->
  62. <!-- </dependency>-->
  63. <dependency>
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger-ui</artifactId>
  66. <version>2.9.2</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba</groupId>
  70. <artifactId>fastjson</artifactId>
  71. <version>1.2.70</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. <optional>true</optional>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-test</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-tx</artifactId>
  86. <version>5.3.9</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-jdbc</artifactId>
  91. <version>5.3.9</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.junit.jupiter</groupId>
  95. <artifactId>junit-jupiter-api</artifactId>
  96. <version>5.7.2</version>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.httpcomponents</groupId>
  101. <artifactId>httpclient</artifactId>
  102. <version>4.5.13</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.google.code.gson</groupId>
  106. <artifactId>gson</artifactId>
  107. <version>2.8.6</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.playcoding</groupId>
  111. <artifactId>iotp-store-client</artifactId>
  112. <version>0.0.1-SNAPSHOT</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.playcoding</groupId>
  116. <artifactId>iotp-shares-core</artifactId>
  117. <version>0.0.1-SNAPSHOT</version>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-maven-plugin</artifactId>
  125. <configuration>
  126. <excludes>
  127. <exclude>
  128. <groupId>org.projectlombok</groupId>
  129. <artifactId>lombok</artifactId>
  130. </exclude>
  131. </excludes>
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>