pom.xml 6.5 KB

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