pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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>
  58. <artifactId>netty-common</artifactId>
  59. <groupId>io.netty</groupId>
  60. </exclusion>
  61. <exclusion>
  62. <artifactId>netty-transport</artifactId>
  63. <groupId>io.netty</groupId>
  64. </exclusion>
  65. <exclusion>
  66. <artifactId>netty-resolver</artifactId>
  67. <groupId>io.netty</groupId>
  68. </exclusion>
  69. <exclusion>
  70. <artifactId>netty-buffer</artifactId>
  71. <groupId>io.netty</groupId>
  72. </exclusion>
  73. <exclusion>
  74. <artifactId>netty-resolver-dns</artifactId>
  75. <groupId>io.netty</groupId>
  76. </exclusion>
  77. <exclusion>
  78. <artifactId>netty-handler</artifactId>
  79. <groupId>io.netty</groupId>
  80. </exclusion>
  81. <exclusion>
  82. <artifactId>netty-codec</artifactId>
  83. <groupId>io.netty</groupId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <dependency>
  88. <groupId>io.netty</groupId>
  89. <artifactId>netty-all</artifactId>
  90. <version>4.1.68.Final</version>
  91. </dependency>
  92. </dependencies>
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>