| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?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-tl-control</artifactId>
- <packaging>pom</packaging>
- <version>2.2.4.0-SNAPSHOT</version>
- <properties>
- <aivfo-data-transmission-facde.version>2.2.3.0-SNAPSHOT</aivfo-data-transmission-facde.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-data-transmission-facade</artifactId>
- <version>${aivfo-data-transmission-facde.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-tl-control-controller</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-tl-control-entity</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-tl-control-facade</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-tl-control-lanucher</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-tl-control-manage</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-tl-control-mapper</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-tl-control-rpc</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-tl-control-service</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-tl-control-service-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>aivfo-tl-control-mapper</module>
- <module>aivfo-tl-control-entity</module>
- <module>aivfo-tl-control-service</module>
- <module>aivfo-tl-control-service-impl</module>
- <module>aivfo-tl-control-manage</module>
- <module>aivfo-tl-control-controller</module>
- <module>aivfo-tl-control-lanucher</module>
- <module>aivfo-tl-control-facade</module>
- <module>aivfo-tl-control-rpc</module>
- </modules>
- </project>
|