pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>ce-datamonitorsystem</artifactId>
  6. <groupId>com.creditease.moniter</groupId>
  7. <version>1.0</version>
  8. <relativePath>../com.creditease.uav.superpom</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>com.creditease.uav.mq</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.creditease.moniter</groupId>
  15. <artifactId>com.creditease.uav.logging</artifactId>
  16. </dependency>
  17. <!-- <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-jms_1.1_spec</artifactId>
  18. <version>1.1</version> </dependency> <dependency> <groupId>org.fusesource.stompjms</groupId>
  19. <artifactId>stompjms-client</artifactId> <version>1.18</version> </dependency> -->
  20. <dependency>
  21. <groupId>com.alibaba.rocketmq</groupId>
  22. <artifactId>rocketmq-client</artifactId>
  23. <version>3.2.6</version>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>com.alibaba</groupId>
  27. <artifactId>fastjson</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!--test -->
  32. <dependency>
  33. <groupId>junit</groupId>
  34. <artifactId>junit</artifactId>
  35. <version>4.12</version>
  36. <scope>test</scope>
  37. </dependency>
  38. </dependencies>
  39. </project>