pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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.7.10</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.finikes</groupId>
  12. <artifactId>ocv1-server</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <name>ocv1-server</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <org.mapstruct.version>1.5.3.Final</org.mapstruct.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.aliyun</groupId>
  27. <artifactId>aliyun-java-sdk-core</artifactId>
  28. <version>4.6.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>fastjson</artifactId>
  33. <version>1.2.83</version>
  34. </dependency>
  35. <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
  36. <dependency>
  37. <groupId>commons-logging</groupId>
  38. <artifactId>commons-logging</artifactId>
  39. <version>1.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.mybatis.spring.boot</groupId>
  43. <artifactId>mybatis-spring-boot-starter</artifactId>
  44. <version>2.3.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-data-redis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-validation</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-codec</groupId>
  61. <artifactId>commons-codec</artifactId>
  62. <version>1.15</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>mysql</groupId>
  66. <artifactId>mysql-connector-java</artifactId>
  67. <version>8.0.32</version>
  68. <scope>runtime</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.mapstruct</groupId>
  72. <artifactId>mapstruct</artifactId>
  73. <version>${org.mapstruct.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-lang3</artifactId>
  78. <version>3.12.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>redis.clients</groupId>
  82. <artifactId>jedis</artifactId>
  83. <version>4.3.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.junit.jupiter</groupId>
  87. <artifactId>junit-jupiter-api</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>junit</groupId>
  91. <artifactId>junit</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-test</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework</groupId>
  99. <artifactId>spring-test</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.github.pagehelper</groupId>
  103. <artifactId>pagehelper-spring-boot-starter</artifactId>
  104. <version>1.2.5</version>
  105. </dependency>
  106. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  107. <dependency>
  108. <groupId>commons-fileupload</groupId>
  109. <artifactId>commons-fileupload</artifactId>
  110. <version>1.5</version>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.springframework.boot</groupId>
  117. <artifactId>spring-boot-maven-plugin</artifactId>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-compiler-plugin</artifactId>
  122. <version>3.8.1</version>
  123. <configuration>
  124. <source>1.8</source> <!-- depending on your project -->
  125. <target>1.8</target> <!-- depending on your project -->
  126. <annotationProcessorPaths>
  127. <path>
  128. <groupId>org.mapstruct</groupId>
  129. <artifactId>mapstruct-processor</artifactId>
  130. <version>${org.mapstruct.version}</version>
  131. </path>
  132. <!-- other annotation processors -->
  133. </annotationProcessorPaths>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. <repositories>
  139. <repository>
  140. <id>spring-milestones</id>
  141. <name>Spring Milestones</name>
  142. <url>https://repo.spring.io/milestone</url>
  143. <snapshots>
  144. <enabled>false</enabled>
  145. </snapshots>
  146. </repository>
  147. <repository>
  148. <id>spring-snapshots</id>
  149. <name>Spring Snapshots</name>
  150. <url>https://repo.spring.io/snapshot</url>
  151. <releases>
  152. <enabled>false</enabled>
  153. </releases>
  154. </repository>
  155. </repositories>
  156. <pluginRepositories>
  157. <pluginRepository>
  158. <id>spring-milestones</id>
  159. <name>Spring Milestones</name>
  160. <url>https://repo.spring.io/milestone</url>
  161. <snapshots>
  162. <enabled>false</enabled>
  163. </snapshots>
  164. </pluginRepository>
  165. <pluginRepository>
  166. <id>spring-snapshots</id>
  167. <name>Spring Snapshots</name>
  168. <url>https://repo.spring.io/snapshot</url>
  169. <releases>
  170. <enabled>false</enabled>
  171. </releases>
  172. </pluginRepository>
  173. </pluginRepositories>
  174. </project>