pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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.dt</groupId>
  6. <artifactId>Marketplace</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>Marketplace</name>
  9. <description>Marketplace</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>com.baomidou</groupId>
  19. <artifactId>mybatis-plus-boot-starter</artifactId>
  20. <version>3.5.4</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-jdbc</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.redisson</groupId>
  28. <artifactId>redisson-spring-boot-starter</artifactId>
  29. <version>3.21.3</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>commons-dbutils</groupId>
  33. <artifactId>commons-dbutils</artifactId>
  34. <version>1.8.1</version> <!-- 版本可根据实际情况选择,建议用较新稳定版 -->
  35. </dependency>
  36. <dependency>
  37. <groupId>io.jsonwebtoken</groupId>
  38. <artifactId>jjwt</artifactId>
  39. <version>0.9.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>fastjson</artifactId>
  44. <version>1.2.83</version> <!-- 版本可能不同 -->
  45. </dependency>
  46. <dependency>
  47. <groupId>com.baomidou</groupId>
  48. <artifactId>mybatis-plus-boot-starter</artifactId>
  49. <version>3.5.4</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-data-redis</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.hutool</groupId>
  57. <artifactId>hutool-all</artifactId>
  58. <version>5.7.15</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.poi</groupId>
  62. <artifactId>poi</artifactId>
  63. <version>4.1.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.poi</groupId>
  67. <artifactId>poi-ooxml</artifactId>
  68. <version>4.1.2</version>
  69. </dependency>
  70. <!-- Hibernate Validator (Bean Validation 实现) -->
  71. <dependency>
  72. <groupId>org.hibernate.validator</groupId>
  73. <artifactId>hibernate-validator</artifactId>
  74. <version>6.2.0.Final</version>
  75. </dependency>
  76. <!-- 验证API -->
  77. <dependency>
  78. <groupId>javax.validation</groupId>
  79. <artifactId>validation-api</artifactId>
  80. <version>2.0.1.Final</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.aliyun.oss</groupId>
  84. <artifactId>aliyun-sdk-oss</artifactId>
  85. <version>3.15.1</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-web</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.mybatis.spring.boot</groupId>
  93. <artifactId>mybatis-spring-boot-starter</artifactId>
  94. <version>2.3.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.mysql</groupId>
  98. <artifactId>mysql-connector-j</artifactId>
  99. <scope>runtime</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.projectlombok</groupId>
  103. <artifactId>lombok</artifactId>
  104. <optional>true</optional>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-test</artifactId>
  109. <scope>test</scope>
  110. </dependency>
  111. </dependencies>
  112. <dependencyManagement>
  113. <dependencies>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-dependencies</artifactId>
  117. <version>${spring-boot.version}</version>
  118. <type>pom</type>
  119. <scope>import</scope>
  120. </dependency>
  121. </dependencies>
  122. </dependencyManagement>
  123. <build>
  124. <plugins>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-compiler-plugin</artifactId>
  128. <version>3.8.1</version>
  129. <configuration>
  130. <source>1.8</source>
  131. <target>1.8</target>
  132. <encoding>UTF-8</encoding>
  133. </configuration>
  134. </plugin>
  135. <plugin>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-maven-plugin</artifactId>
  138. <version>${spring-boot.version}</version>
  139. <configuration>
  140. <mainClass>com.dt.MarketplaceApplication</mainClass>
  141. <skip>true</skip>
  142. </configuration>
  143. <executions>
  144. <execution>
  145. <id>repackage</id>
  146. <goals>
  147. <goal>repackage</goal>
  148. </goals>
  149. </execution>
  150. </executions>
  151. </plugin>
  152. </plugins>
  153. </build>
  154. </project>