| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <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-parent</artifactId>
- <groupId>com.aivfo</groupId>
- <version>1.2.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>aivfo-gateway</artifactId>
- <packaging>pom</packaging>
- <version>2.2.2.0-SNAPSHOT</version>
- <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>
- <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>
- </project>
|