123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?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>chelvc</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <properties>
- <admin.version>1.0.0-SNAPSHOT</admin.version>
- <maintain.version>1.0.0-SNAPSHOT</maintain.version>
- <uc-api.version>1.0.0-SNAPSHOT</uc-api.version>
- <uc-server.version>1.0.0-SNAPSHOT</uc-server.version>
- <vehicle-api.version>1.0.0-SNAPSHOT</vehicle-api.version>
- <vehicle-server.version>1.0.0-SNAPSHOT</vehicle-server.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.chelvc.cloud</groupId>
- <artifactId>admin</artifactId>
- <version>${admin.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.cloud</groupId>
- <artifactId>maintain</artifactId>
- <version>${maintain.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.cloud</groupId>
- <artifactId>uc-api</artifactId>
- <version>${uc-api.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.cloud</groupId>
- <artifactId>uc-server</artifactId>
- <version>${uc-server.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.cloud</groupId>
- <artifactId>vehicle-api</artifactId>
- <version>${vehicle-api.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.cloud</groupId>
- <artifactId>vehicle-server</artifactId>
- <version>${vehicle-server.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- </dependency>
- </dependencies>
- </project>
|