|
@@ -0,0 +1,76 @@
|
|
|
+<?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.platform</groupId>
|
|
|
+ <artifactId>platform-cloud</artifactId>
|
|
|
+ <version>1.0.0-RELEASE</version>
|
|
|
+ <relativePath/>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <groupId>com.chelvc.cloud</groupId>
|
|
|
+ <artifactId>chelvc</artifactId>
|
|
|
+ <version>1.0.0-SNAPSHOT</version>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <uc-api.version>1.0.0-SNAPSHOT</uc-api.version>
|
|
|
+ <uc-server.version>1.0.0-SNAPSHOT</uc-server.version>
|
|
|
+ <admin.version>1.0.0-SNAPSHOT</admin.version>
|
|
|
+ <platform-redis.version>1.0.0-RELEASE</platform-redis.version>
|
|
|
+ <platform-wechat.version>1.0.0-RELEASE</platform-wechat.version>
|
|
|
+ <platform-security.version>1.0.0-RELEASE</platform-security.version>
|
|
|
+ <platform-database.version>1.0.0-RELEASE</platform-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>uc-server</artifactId>
|
|
|
+ <version>${uc-server.version}</version>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.chelvc.cloud</groupId>
|
|
|
+ <artifactId>admin</artifactId>
|
|
|
+ <version>${admin.version}</version>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.chelvc.platform</groupId>
|
|
|
+ <artifactId>platform-redis</artifactId>
|
|
|
+ <version>${platform-redis.version}</version>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.chelvc.platform</groupId>
|
|
|
+ <artifactId>platform-wechat</artifactId>
|
|
|
+ <version>${platform-wechat.version}</version>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.chelvc.platform</groupId>
|
|
|
+ <artifactId>platform-security</artifactId>
|
|
|
+ <version>${platform-security.version}</version>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.chelvc.platform</groupId>
|
|
|
+ <artifactId>platform-database</artifactId>
|
|
|
+ <version>${platform-database.version}</version>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
+ <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+</project>
|