pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.ruoyi</groupId>
  8. <artifactId>ruoyi</artifactId>
  9. <version>3.8.5</version>
  10. </parent>
  11. <artifactId>hx-file</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <!-- 核心模块-->
  19. <dependency>
  20. <groupId>com.ruoyi</groupId>
  21. <artifactId>ruoyi-framework</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.huaweicloud</groupId>
  25. <artifactId>esdk-obs-java</artifactId>
  26. <version>3.19.7</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.squareup.okio</groupId>
  30. <artifactId>okio</artifactId>
  31. <version>2.8.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.fly</groupId>
  35. <artifactId>fly-generator</artifactId>
  36. <version>1.0.hx</version>
  37. <scope>test</scope>
  38. </dependency>
  39. <!--腾讯COS对象存储SDK-->
  40. <dependency>
  41. <groupId>com.qcloud</groupId>
  42. <artifactId>cos_api</artifactId>
  43. <version>5.6.155</version>
  44. </dependency>
  45. <!--腾讯COS对象存储SDK依赖-->
  46. <dependency>
  47. <groupId>commons-codec</groupId>
  48. <artifactId>commons-codec</artifactId>
  49. <version>1.10</version>
  50. </dependency>
  51. </dependencies>
  52. </project>