.flattened-pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.aivfo</groupId>
  7. <artifactId>aivfo-model-parent</artifactId>
  8. <version>1.2.0-SNAPSHOT</version>
  9. <relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
  10. </parent>
  11. <groupId>com.aivfo</groupId>
  12. <artifactId>aivfo-oplog-client</artifactId>
  13. <version>1.2.0-SNAPSHOT</version>
  14. <description>操作日志 Kafka 发送端:为已引入 kafka 的服务提供 OperationLogSender 实现(发 tl-oplog)。
  15. 不被 aivfo-log-spring-boot 反向依赖,保证未引入 kafka 的服务不受影响。</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.aivfo</groupId>
  19. <artifactId>aivfo-log-spring-boot-starter</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.aivfo</groupId>
  23. <artifactId>aivfo-kafka-spring-boot-starter</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-autoconfigure</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-configuration-processor</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. </dependencies>
  35. </project>