pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.chelvc.framework</groupId>
  8. <artifactId>framework-dependencies</artifactId>
  9. <version>1.0.0-RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>framework-upload</artifactId>
  13. <version>1.0.0-RELEASE</version>
  14. <properties>
  15. <aliyun-oss.version>3.17.4</aliyun-oss.version>
  16. <aliyun-cdn.version>3.8.8</aliyun-cdn.version>
  17. <tencent-cos.version>5.6.8</tencent-cos.version>
  18. <tencent-cdn.version>3.1.1069</tencent-cdn.version>
  19. <framework-base.version>1.0.0-RELEASE</framework-base.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.chelvc.framework</groupId>
  24. <artifactId>framework-base</artifactId>
  25. <version>${framework-base.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.aliyun.oss</groupId>
  29. <artifactId>aliyun-sdk-oss</artifactId>
  30. <version>${aliyun-oss.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.aliyun</groupId>
  34. <artifactId>aliyun-java-sdk-cdn</artifactId>
  35. <version>${aliyun-cdn.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.qcloud</groupId>
  39. <artifactId>cos_api</artifactId>
  40. <version>${tencent-cos.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.tencentcloudapi</groupId>
  44. <artifactId>tencentcloud-sdk-java-cdn</artifactId>
  45. <version>${tencent-cdn.version}</version>
  46. </dependency>
  47. </dependencies>
  48. </project>