| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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-tl-control</artifactId>
- <version>2.2.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <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>
- <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>
- </project>
|