12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?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-dependencies</artifactId>
- <version>1.0.0-RELEASE</version>
- <relativePath/>
- </parent>
- <artifactId>framework-upload</artifactId>
- <version>1.0.0-RELEASE</version>
- <properties>
- <aliyun-oss.version>3.17.4</aliyun-oss.version>
- <aliyun-cdn.version>3.8.8</aliyun-cdn.version>
- <tencent-cos.version>5.6.8</tencent-cos.version>
- <tencent-cdn.version>3.1.1069</tencent-cdn.version>
- <framework-base.version>1.0.0-RELEASE</framework-base.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.chelvc.framework</groupId>
- <artifactId>framework-base</artifactId>
- <version>${framework-base.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aliyun.oss</groupId>
- <artifactId>aliyun-sdk-oss</artifactId>
- <version>${aliyun-oss.version}</version>
- </dependency>
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-cdn</artifactId>
- <version>${aliyun-cdn.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qcloud</groupId>
- <artifactId>cos_api</artifactId>
- <version>${tencent-cos.version}</version>
- </dependency>
- <dependency>
- <groupId>com.tencentcloudapi</groupId>
- <artifactId>tencentcloud-sdk-java-cdn</artifactId>
- <version>${tencent-cdn.version}</version>
- </dependency>
- </dependencies>
- </project>
|