| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>aivfo-business-parent</artifactId>
- <groupId>com.aivfo</groupId>
- <version>1.2.0-SNAPSHOT</version>
- </parent>
- <artifactId>aivfo-oplog</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <description>全量操作日志微服务:消费 tl-oplog 入 operation_log</description>
- <dependencies>
- <dependency><groupId>com.aivfo</groupId><artifactId>aivfo-web-servlet-spring-boot-starter</artifactId></dependency>
- <dependency><groupId>com.aivfo</groupId><artifactId>aivfo-mybatis-plus-spring-boot-starter</artifactId></dependency>
- <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>com.aivfo</groupId><artifactId>aivfo-nacos-spring-boot-starter</artifactId></dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.2.7.RELEASE</version>
- <configuration>
- <mainClass>com.aivfo.oplog.OplogApplication</mainClass>
- </configuration>
- <executions><execution><goals><goal>repackage</goal></goals></execution></executions>
- </plugin>
- </plugins>
- </build>
- </project>
|