pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>MSModule</artifactId>
  7. <groupId>com.github.microservice</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <relativePath>../../super/MSModule</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>ActiveMQ</artifactId>
  13. <groupId>com.github.microservice.components</groupId>
  14. <properties>
  15. <activemq-client.version>6.0.1</activemq-client.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.github.microservice</groupId>
  20. <artifactId>PCore</artifactId>
  21. <version>1.0.0-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.activemq</groupId>
  25. <artifactId>activemq-client</artifactId>
  26. <version>${activemq-client.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-activemq</artifactId>
  31. </dependency>
  32. </dependencies>
  33. </project>