pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.ym</groupId>
  8. <artifactId>mec</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <groupId>com.yonge.audio</groupId>
  12. <artifactId>audio-analysis</artifactId>
  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>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>de.codecentric</groupId>
  29. <artifactId>spring-boot-admin-starter-client</artifactId>
  30. </dependency>
  31. <!-- swagger-spring-boot -->
  32. <dependency>
  33. <groupId>com.spring4all</groupId>
  34. <artifactId>swagger-spring-boot-starter</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.github.xiaoymin</groupId>
  38. <artifactId>swagger-bootstrap-ui</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>druid-spring-boot-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.ym</groupId>
  50. <artifactId>mec-auth-api</artifactId>
  51. <exclusions>
  52. <exclusion>
  53. <artifactId>netty-common</artifactId>
  54. <groupId>io.netty</groupId>
  55. </exclusion>
  56. <exclusion>
  57. <artifactId>netty-transport</artifactId>
  58. <groupId>io.netty</groupId>
  59. </exclusion>
  60. <exclusion>
  61. <artifactId>netty-resolver</artifactId>
  62. <groupId>io.netty</groupId>
  63. </exclusion>
  64. <exclusion>
  65. <artifactId>netty-buffer</artifactId>
  66. <groupId>io.netty</groupId>
  67. </exclusion>
  68. <exclusion>
  69. <artifactId>netty-resolver-dns</artifactId>
  70. <groupId>io.netty</groupId>
  71. </exclusion>
  72. <exclusion>
  73. <artifactId>netty-handler</artifactId>
  74. <groupId>io.netty</groupId>
  75. </exclusion>
  76. <exclusion>
  77. <artifactId>netty-codec</artifactId>
  78. <groupId>io.netty</groupId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.ym</groupId>
  84. <artifactId>mec-biz</artifactId>
  85. <exclusions>
  86. <exclusion>
  87. <artifactId>netty-common</artifactId>
  88. <groupId>io.netty</groupId>
  89. </exclusion>
  90. <exclusion>
  91. <artifactId>netty-transport</artifactId>
  92. <groupId>io.netty</groupId>
  93. </exclusion>
  94. <exclusion>
  95. <artifactId>netty-resolver</artifactId>
  96. <groupId>io.netty</groupId>
  97. </exclusion>
  98. <exclusion>
  99. <artifactId>netty-buffer</artifactId>
  100. <groupId>io.netty</groupId>
  101. </exclusion>
  102. <exclusion>
  103. <artifactId>netty-resolver-dns</artifactId>
  104. <groupId>io.netty</groupId>
  105. </exclusion>
  106. <exclusion>
  107. <artifactId>netty-handler</artifactId>
  108. <groupId>io.netty</groupId>
  109. </exclusion>
  110. <exclusion>
  111. <artifactId>netty-codec</artifactId>
  112. <groupId>io.netty</groupId>
  113. </exclusion>
  114. </exclusions>
  115. </dependency>
  116. <dependency>
  117. <groupId>io.netty</groupId>
  118. <artifactId>netty-all</artifactId>
  119. <version>4.1.68.Final</version>
  120. </dependency>
  121. </dependencies>
  122. <build>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-maven-plugin</artifactId>
  127. </plugin>
  128. <plugin>
  129. <groupId>com.spotify</groupId>
  130. <artifactId>docker-maven-plugin</artifactId>
  131. <version>1.2.2</version>
  132. </plugin>
  133. </plugins>
  134. </build>
  135. </project>