pom.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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.example</groupId>
  6. <artifactId>unusualSounds</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>unusualSounds</name>
  9. <description>unusualSounds</description>
  10. <properties>
  11. <java.version>17</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>3.0.2</spring-boot.version>
  15. <knife4j.version>4.4.0</knife4j.version>
  16. <mysql.version>8.0.29</mysql.version>
  17. <mybatis-plus.version>3.5.3.2</mybatis-plus.version>
  18. <druid.version>1.2.16</druid.version>
  19. <commons.version>2.6</commons.version>
  20. <minio.version>8.5.2</minio.version>
  21. <javacv.version>1.5.9</javacv.version>
  22. <dynamic.version>3.6.1</dynamic.version>
  23. <fastjson.version>2.0.28</fastjson.version>
  24. <mybatis-plus-extension>3.3.0</mybatis-plus-extension>
  25. </properties>
  26. <dependencies>
  27. <!-- <dependency>-->
  28. <!-- <groupId>com.baomidou</groupId>-->
  29. <!-- <artifactId>mybatis-plus-extension</artifactId>-->
  30. <!-- <version>${mybatis-plus-extension}</version>-->
  31. <!-- </dependency>-->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-validation</artifactId>
  35. </dependency>
  36. <!-- 集成redis依赖 -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-data-redis</artifactId>
  40. </dependency>
  41. <!-- redis 连接池 -->
  42. <dependency>
  43. <groupId>org.apache.commons</groupId>
  44. <artifactId>commons-pool2</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.alibaba.fastjson2</groupId>
  48. <artifactId>fastjson2</artifactId>
  49. <version>${fastjson.version}</version>
  50. </dependency>
  51. <!-- 百度一见平台sdk-->
  52. <dependency>
  53. <groupId>com.baidubce</groupId>
  54. <artifactId>bce-java-sdk</artifactId>
  55. <version>0.10.322</version>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>ch.qos.logback</groupId>
  59. <artifactId>logback-classic</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>ch.qos.logback</groupId>
  63. <artifactId>logback-core</artifactId>
  64. </exclusion>
  65. <exclusion>
  66. <groupId>org.slf4j</groupId>
  67. <artifactId>jcl-over-slf4j</artifactId>
  68. </exclusion>
  69. <exclusion>
  70. <artifactId>slf4j-reload4j</artifactId>
  71. <groupId>org.slf4j</groupId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>
  75. <!-- 排除jdk17下使用bce-java-sdk 中tools.jar问题-->
  76. <dependency>
  77. <groupId>org.apache.hadoop </groupId>
  78. <artifactId>hadoop-mapreduce-client-core </artifactId>
  79. <version>2.5.1 </version>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>jdk.tools </groupId>
  83. <artifactId>jdk.tools </artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <artifactId>slf4j-reload4j</artifactId>
  87. <groupId>org.slf4j</groupId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-configuration-processor</artifactId>
  94. <optional>true</optional>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.bytedeco</groupId>
  98. <artifactId>javacv-platform</artifactId>
  99. <version>${javacv.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>io.minio</groupId>
  103. <artifactId>minio</artifactId>
  104. <version>${minio.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.alibaba</groupId>
  108. <artifactId>druid-spring-boot-starter</artifactId>
  109. <version>${druid.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-data-redis</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.commons</groupId>
  117. <artifactId>commons-lang3</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>commons-io</groupId>
  121. <artifactId>commons-io</artifactId>
  122. <version>${commons.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.baomidou</groupId>
  126. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  127. <version>${dynamic.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>mysql</groupId>
  131. <artifactId>mysql-connector-java</artifactId>
  132. <version>${mysql.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.baomidou</groupId>
  136. <artifactId>mybatis-plus-boot-starter</artifactId>
  137. <version>${mybatis-plus.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.github.xiaoymin</groupId>
  141. <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
  142. <version>${knife4j.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-starter-web</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-devtools</artifactId>
  151. <scope>runtime</scope>
  152. <optional>true</optional>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.projectlombok</groupId>
  156. <artifactId>lombok</artifactId>
  157. <optional>true</optional>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-starter-test</artifactId>
  162. <scope>test</scope>
  163. </dependency>
  164. </dependencies>
  165. <dependencyManagement>
  166. <dependencies>
  167. <dependency>
  168. <groupId>org.springframework.boot</groupId>
  169. <artifactId>spring-boot-dependencies</artifactId>
  170. <version>${spring-boot.version}</version>
  171. <type>pom</type>
  172. <scope>import</scope>
  173. </dependency>
  174. </dependencies>
  175. </dependencyManagement>
  176. <build>
  177. <plugins>
  178. <plugin>
  179. <groupId>org.apache.maven.plugins</groupId>
  180. <artifactId>maven-compiler-plugin</artifactId>
  181. <version>3.8.1</version>
  182. <configuration>
  183. <source>17</source>
  184. <target>17</target>
  185. <encoding>UTF-8</encoding>
  186. </configuration>
  187. </plugin>
  188. <plugin>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot-maven-plugin</artifactId>
  191. <version>${spring-boot.version}</version>
  192. <configuration>
  193. <mainClass>com.example.unusualsounds.UnusualSoundsApplication</mainClass>
  194. <skip>true</skip>
  195. </configuration>
  196. <executions>
  197. <execution>
  198. <id>repackage</id>
  199. <goals>
  200. <goal>repackage</goal>
  201. </goals>
  202. </execution>
  203. </executions>
  204. </plugin>
  205. </plugins>
  206. </build>
  207. </project>