1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?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-nacos-dubbo</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>
- <vehicle-api.version>1.0.0-SNAPSHOT</vehicle-api.version>
- <framework-sms.version>1.0.0-RELEASE</framework-sms.version>
- <framework-redis.version>1.0.0-RELEASE</framework-redis.version>
- <framework-upload.version>1.0.0-RELEASE</framework-upload.version>
- <framework-oauth.version>1.0.0-RELEASE</framework-oauth.version>
- <framework-security.version>1.0.0-RELEASE</framework-security.version>
- <framework-location.version>1.0.0-RELEASE</framework-location.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.chelvc.cloud</groupId>
- <artifactId>uc-api</artifactId>
- <version>${uc-api.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.cloud</groupId>
- <artifactId>vehicle-api</artifactId>
- <version>${vehicle-api.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.framework</groupId>
- <artifactId>framework-sms</artifactId>
- <version>${framework-sms.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.framework</groupId>
- <artifactId>framework-redis</artifactId>
- <version>${framework-redis.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.framework</groupId>
- <artifactId>framework-upload</artifactId>
- <version>${framework-upload.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.framework</groupId>
- <artifactId>framework-oauth</artifactId>
- <version>${framework-oauth.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.framework</groupId>
- <artifactId>framework-security</artifactId>
- <version>${framework-security.version}</version>
- </dependency>
- <dependency>
- <groupId>com.chelvc.framework</groupId>
- <artifactId>framework-location</artifactId>
- <version>${framework-location.version}</version>
- </dependency>
- </dependencies>
- </project>
|