| 1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-model-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
- </parent>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-oplog-client</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <description>操作日志 Kafka 发送端:为已引入 kafka 的服务提供 OperationLogSender 实现(发 tl-oplog)。
- 不被 aivfo-log-spring-boot 反向依赖,保证未引入 kafka 的服务不受影响。</description>
- <dependencies>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-log-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-kafka-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-autoconfigure</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- </dependencies>
- </project>
|