pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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.nexo</groupId>
  32. <artifactId>nexo-common-sentinel</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.nexo</groupId>
  36. <artifactId>nexo-common-websocket</artifactId>
  37. <version>1.8.2</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.nexo</groupId>
  41. <artifactId>nexo-common-security</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.nexo</groupId>
  45. <artifactId>nexo-common-doc</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.nexo</groupId>
  49. <artifactId>nexo-common-web</artifactId>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <finalName>${project.artifactId}</finalName>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. <version>${spring-boot.version}</version>
  59. <executions>
  60. <execution>
  61. <goals>
  62. <goal>repackage</goal>
  63. </goals>
  64. </execution>
  65. </executions>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>