1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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>admin</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <properties>
- <uc-api.version>1.0.0-SNAPSHOT</uc-api.version>
- <platform-redis.version>1.0.0-RELEASE</platform-redis.version>
- <platform-security.version>1.0.0-RELEASE</platform-security.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.platform</groupId>
- <artifactId>platform-redis</artifactId>
- <version>${platform-redis.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>
- </dependencies>
- </project>
|