pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.superdesk.uniorder</groupId>
  6. <artifactId>superdesk-operation-center</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>superdesk-uniorder-common-mq-redis</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>cn.superdesk.uniorder</groupId>
  13. <artifactId>superdesk-uniorder-common-json</artifactId>
  14. <version>${project.parent.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.data</groupId>
  18. <artifactId>spring-data-redis</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>cn.hutool</groupId>
  22. <artifactId>hutool-core</artifactId>
  23. <version>5.4.3</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.hutool</groupId>
  27. <artifactId>hutool-json</artifactId>
  28. <version>5.4.3</version>
  29. </dependency>
  30. </dependencies>
  31. </project>