pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.yonge.cooleshow</groupId>
  6. <artifactId>cooleshow</artifactId>
  7. <version>1.0</version>
  8. </parent>
  9. <groupId>com.yonge.audio</groupId>
  10. <artifactId>audio-analysis</artifactId>
  11. <version>1.0</version>
  12. <packaging>jar</packaging>
  13. <name>audio-analysis</name>
  14. <url>http://maven.apache.org</url>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.github.st-h</groupId>
  21. <artifactId>TarsosDSP</artifactId>
  22. <version>2.4.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba.cloud</groupId>
  26. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.alibaba.cloud</groupId>
  30. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  31. </dependency>
  32. <!-- swagger-spring-boot -->
  33. <dependency>
  34. <groupId>com.spring4all</groupId>
  35. <artifactId>swagger-spring-boot-starter</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.github.xiaoymin</groupId>
  39. <artifactId>swagger-bootstrap-ui</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>druid-spring-boot-starter</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>mysql</groupId>
  47. <artifactId>mysql-connector-java</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.yonge.cooleshow</groupId>
  51. <artifactId>auth-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.yonge.cooleshow</groupId>
  55. <artifactId>user-biz</artifactId>
  56. <exclusions>
  57. <!-- <exclusion> <groupId>org.redisson</groupId> <artifactId>redisson-spring-boot-starter</artifactId>
  58. </exclusion> -->
  59. <exclusion>
  60. <artifactId>netty-common</artifactId>
  61. <groupId>io.netty</groupId>
  62. </exclusion>
  63. <exclusion>
  64. <artifactId>netty-transport</artifactId>
  65. <groupId>io.netty</groupId>
  66. </exclusion>
  67. <exclusion>
  68. <artifactId>netty-resolver</artifactId>
  69. <groupId>io.netty</groupId>
  70. </exclusion>
  71. <exclusion>
  72. <artifactId>netty-buffer</artifactId>
  73. <groupId>io.netty</groupId>
  74. </exclusion>
  75. <exclusion>
  76. <artifactId>netty-resolver-dns</artifactId>
  77. <groupId>io.netty</groupId>
  78. </exclusion>
  79. <exclusion>
  80. <artifactId>netty-handler</artifactId>
  81. <groupId>io.netty</groupId>
  82. </exclusion>
  83. <exclusion>
  84. <artifactId>netty-codec</artifactId>
  85. <groupId>io.netty</groupId>
  86. </exclusion>
  87. </exclusions>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.netty</groupId>
  91. <artifactId>netty-all</artifactId>
  92. <version>4.1.68.Final</version>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>