pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.superdesk.uniorder</groupId>
  7. <artifactId>superdesk-uniorder-executor</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>superdesk-uniorder-executor-scheduler-kafka</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-web</artifactId>
  15. </dependency>
  16. <!-- kafka -->
  17. <dependency>
  18. <groupId>org.springframework.kafka</groupId>
  19. <artifactId>spring-kafka</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>cn.superdesk.uniorder</groupId>
  23. <artifactId>superdesk-uniorder-executor-scheduler-kafka-constants</artifactId>
  24. <version>${project.parent.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.superdesk.uniorder</groupId>
  28. <artifactId>superdesk-uniorder-dto</artifactId>
  29. <version>${project.parent.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>cn.superdesk.uniorder</groupId>
  33. <artifactId>superdesk-uniorder-common</artifactId>
  34. <version>${project.parent.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.superdesk.uniorder</groupId>
  38. <artifactId>superdesk-uniorder-dao</artifactId>
  39. <version>${project.parent.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.superdesk.uniorder</groupId>
  43. <artifactId>superdesk-uniorder-service</artifactId>
  44. <version>${project.parent.version}</version>
  45. </dependency>
  46. </dependencies>
  47. </project>