pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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>aivfo-model-parent</artifactId>
  7. <groupId>com.aivfo</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>aivfo-oplog-client</artifactId>
  13. <description>操作日志 Kafka 发送端:为已引入 kafka 的服务提供 OperationLogSender 实现(发 tl-oplog)。
  14. 不被 aivfo-log-spring-boot 反向依赖,保证未引入 kafka 的服务不受影响。</description>
  15. <dependencies>
  16. <!-- 提供 OperationLogSender 接口 / OperationLogMessage / 切面 -->
  17. <dependency>
  18. <groupId>com.aivfo</groupId>
  19. <artifactId>aivfo-log-spring-boot-starter</artifactId>
  20. </dependency>
  21. <!-- 提供 ProducerNormal / TopicManage -->
  22. <dependency>
  23. <groupId>com.aivfo</groupId>
  24. <artifactId>aivfo-kafka-spring-boot-starter</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-autoconfigure</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-configuration-processor</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. </dependencies>
  36. </project>