| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?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-business-parent</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- </parent>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway</artifactId>
- <version>2.2.2.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>aivfo-gateway-mapper</module>
- <module>aivfo-gateway-entity</module>
- <module>aivfo-gateway-service</module>
- <module>aivfo-gateway-service-impl</module>
- <module>aivfo-gateway-manage</module>
- <module>aivfo-gateway-controller</module>
- <module>aivfo-gateway-lanucher</module>
- <module>aivfo-gateway-facade</module>
- <module>aivfo-gateway-rpc</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-controller</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-entity</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-facade</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-manage</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-mapper</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-rpc</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-service</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-gateway-service-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|