pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>4dkankan-utils</artifactId>
  7. <groupId>com.fdkankan</groupId>
  8. <version>3.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>4dkankan-utils-disruptormq</artifactId>
  12. <properties>
  13. <disruptor.version>3.4.4</disruptor.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>ch.qos.logback</groupId>
  18. <artifactId>logback-classic</artifactId>
  19. <version>1.2.11</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.lmax</groupId>
  23. <artifactId>disruptor</artifactId>
  24. <version>${disruptor.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-configuration-processor</artifactId>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-autoconfigure</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter</artifactId>
  38. </dependency>
  39. </dependencies>
  40. </project>