pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. <groupId>com.tmzn</groupId>
  6. <artifactId>device-link-ykc</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>device-link-ykc</name>
  9. <description>Demo project for Spring Boot</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.7.6</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.weitiandi</groupId>
  23. <artifactId>device-common</artifactId>
  24. <version>1.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba.fastjson2</groupId>
  37. <artifactId>fastjson2</artifactId>
  38. <version>2.0.25</version>
  39. </dependency>
  40. <!-- Mysql驱动包 -->
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. <version>8.0.29</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-jdbc</artifactId>
  49. <version>2.5.14</version>
  50. </dependency>
  51. <!-- mybatis-plus-->
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-boot-starter</artifactId>
  55. <version>3.5.2</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>druid-spring-boot-starter</artifactId>
  60. <version>1.2.16</version>
  61. </dependency>
  62. <!-- pagehelper 分页插件 -->
  63. <dependency>
  64. <groupId>com.github.pagehelper</groupId>
  65. <artifactId>pagehelper-spring-boot-starter</artifactId>
  66. <version>1.4.6</version>
  67. </dependency>
  68. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  69. <dependency>
  70. <groupId>com.squareup.okhttp3</groupId>
  71. <artifactId>okhttp</artifactId>
  72. <version>3.11.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>junit</groupId>
  76. <artifactId>junit</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.github.openfeign</groupId>
  80. <artifactId>feign-core</artifactId>
  81. <version>11.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>io.github.openfeign</groupId>
  85. <artifactId>feign-jackson</artifactId>
  86. <version>11.0</version>
  87. </dependency>
  88. <!-- https://mvnrepository.com/artifact/org.mapstruct/mapstruct -->
  89. <dependency>
  90. <groupId>org.mapstruct</groupId>
  91. <artifactId>mapstruct</artifactId>
  92. <version>1.5.2.Final</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.mapstruct</groupId>
  96. <artifactId>mapstruct-processor</artifactId>
  97. <version>1.5.2.Final</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok-mapstruct-binding</artifactId>
  102. <version>0.2.0</version>
  103. </dependency>
  104. </dependencies>
  105. <dependencyManagement>
  106. <dependencies>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-dependencies</artifactId>
  110. <version>${spring-boot.version}</version>
  111. <type>pom</type>
  112. <scope>import</scope>
  113. </dependency>
  114. </dependencies>
  115. </dependencyManagement>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-compiler-plugin</artifactId>
  121. <version>3.8.1</version>
  122. <configuration>
  123. <source>1.8</source>
  124. <target>1.8</target>
  125. <encoding>UTF-8</encoding>
  126. </configuration>
  127. </plugin>
  128. <plugin>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-maven-plugin</artifactId>
  131. <version>${spring-boot.version}</version>
  132. <configuration>
  133. <mainClass>com.tmzn.devicelinkykc.DeviceLinkYkcApplication</mainClass>
  134. <skip>false</skip>
  135. </configuration>
  136. <executions>
  137. <execution>
  138. <id>repackage</id>
  139. <goals>
  140. <goal>repackage</goal>
  141. </goals>
  142. </execution>
  143. </executions>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>