| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?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">
- <parent>
- <artifactId>aivfo-business-manage</artifactId>
- <groupId>com.aivfo</groupId>
- <version>2.2.4.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>aivfo-business-manage-manage</artifactId>
- <packaging>pom</packaging>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-business-manage-app-manage</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-business-manage-pc-manage</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-business-manage-surface-manage</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>aivfo-business-manage-pc-manage</module>
- <module>aivfo-business-manage-surface-manage</module>
- <module>aivfo-business-manage-app-manage</module>
- </modules>
- <!-- 公共依赖 -->
- <dependencies>
- <!-- 模块内部依赖 -->
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-business-manage-service-impl</artifactId>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-business-manage-facade</artifactId>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-business-manage-rpc</artifactId>
- </dependency>
- <!-- 模块内部依赖 -->
- <!-- aivfo框架依赖 -->
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-web-servlet-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-monitor-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-element-auth</artifactId>
- </dependency>
- <!-- aivfo框架依赖 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- </dependency>
- <!-- 操作日志 Kafka 基础设施(M8 G3-2) -->
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-kafka-spring-boot-starter</artifactId>
- </dependency>
- </dependencies>
- </project>
|