pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.nexo</groupId>
  7. <artifactId>nexo-example</artifactId>
  8. <version>1.8.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>nexo-stream-mq</artifactId>
  12. <description>
  13. nexo-stream-mq SpringCloud-Stream-MQ 案例项目
  14. </description>
  15. <dependencies>
  16. <!-- SpringCloud Alibaba Nacos -->
  17. <dependency>
  18. <groupId>com.alibaba.cloud</groupId>
  19. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  20. </dependency>
  21. <!-- SpringCloud Alibaba Nacos Config -->
  22. <dependency>
  23. <groupId>com.alibaba.cloud</groupId>
  24. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-stream-rabbit</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.alibaba.cloud</groupId>
  32. <artifactId>spring-cloud-starter-stream-rocketmq</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-starter-stream-kafka</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.nexo</groupId>
  40. <artifactId>nexo-common-sentinel</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.nexo</groupId>
  44. <artifactId>nexo-common-security</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.nexo</groupId>
  48. <artifactId>nexo-common-doc</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.nexo</groupId>
  52. <artifactId>nexo-common-web</artifactId>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <finalName>${project.artifactId}</finalName>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. <version>${spring-boot.version}</version>
  62. <executions>
  63. <execution>
  64. <goals>
  65. <goal>repackage</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>