|
@@ -0,0 +1,59 @@
|
|
|
|
+<?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">
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+
|
|
|
|
+ <parent>
|
|
|
|
+ <groupId>com.chelvc.framework</groupId>
|
|
|
|
+ <artifactId>framework-cloud</artifactId>
|
|
|
|
+ <version>1.0.0-RELEASE</version>
|
|
|
|
+ <relativePath/>
|
|
|
|
+ </parent>
|
|
|
|
+
|
|
|
|
+ <groupId>com.chelvc.cloud</groupId>
|
|
|
|
+ <artifactId>maintain</artifactId>
|
|
|
|
+ <version>1.0.0-SNAPSHOT</version>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <uc-api.version>1.0.0-SNAPSHOT</uc-api.version>
|
|
|
|
+ <trade-api.version>1.0.0-SNAPSHOT</trade-api.version>
|
|
|
|
+ <vehicle-api.version>1.0.0-SNAPSHOT</vehicle-api.version>
|
|
|
|
+ <framework-redis.version>1.0.0-RELEASE</framework-redis.version>
|
|
|
|
+ <framework-security.version>1.0.0-RELEASE</framework-security.version>
|
|
|
|
+ <framework-database.version>1.0.0-RELEASE</framework-database.version>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.chelvc.cloud</groupId>
|
|
|
|
+ <artifactId>uc-api</artifactId>
|
|
|
|
+ <version>${uc-api.version}</version>
|
|
|
|
+ <optional>true</optional>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.chelvc.cloud</groupId>
|
|
|
|
+ <artifactId>trade-api</artifactId>
|
|
|
|
+ <version>${trade-api.version}</version>
|
|
|
|
+ <optional>true</optional>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.chelvc.cloud</groupId>
|
|
|
|
+ <artifactId>vehicle-api</artifactId>
|
|
|
|
+ <version>${vehicle-api.version}</version>
|
|
|
|
+ <optional>true</optional>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.chelvc.framework</groupId>
|
|
|
|
+ <artifactId>framework-redis</artifactId>
|
|
|
|
+ <version>${framework-redis.version}</version>
|
|
|
|
+ <optional>true</optional>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.chelvc.framework</groupId>
|
|
|
|
+ <artifactId>framework-security</artifactId>
|
|
|
|
+ <version>${framework-security.version}</version>
|
|
|
|
+ <optional>true</optional>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+</project>
|