pom.xml 8.4 KB

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