pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.yr.warehouse.admin</groupId>
  7. <artifactId>yr-warehouse-admin</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <artifactId>warehouse-admin-event</artifactId>
  11. <version>${revision}</version>
  12. <name>warehouse-admin-event</name>
  13. <description>warehouse-admin-event</description>
  14. <dependencies>
  15. <!-- 内部引用 -->
  16. <dependency>
  17. <groupId>com.yr.warehouse.admin</groupId>
  18. <artifactId>warehouse-admin-server</artifactId>
  19. <version>${revision}</version>
  20. <exclusions>
  21. <exclusion>
  22. <artifactId>annotations-api</artifactId>
  23. <groupId>org.apache.tomcat</groupId>
  24. </exclusion>
  25. </exclusions>
  26. </dependency>
  27. <!-- amqp 1.0 qpid client -->
  28. <!-- xxljob -->
  29. <dependency>
  30. <groupId>com.xuxueli</groupId>
  31. <artifactId>xxl-job-core</artifactId>
  32. <version>2.4.0</version>
  33. </dependency>
  34. <!-- amqp 1.0 qpid client -->
  35. <dependency>
  36. <groupId>org.apache.qpid</groupId>
  37. <artifactId>qpid-jms-client</artifactId>
  38. <version>0.57.0</version>
  39. </dependency>
  40. <!-- util for base64-->
  41. <dependency>
  42. <groupId>commons-codec</groupId>
  43. <artifactId>commons-codec</artifactId>
  44. <version>1.10</version>
  45. </dependency>
  46. </dependencies>
  47. </project>