pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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.crunii.microservice</groupId>
  8. <artifactId>service-study-center</artifactId>
  9. <version>${micro.version}</version>
  10. </parent>
  11. <artifactId>service-study-center-biz</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.jcraft</groupId>
  15. <artifactId>jsch</artifactId>
  16. <version>0.1.54</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alibaba</groupId>
  20. <artifactId>easyexcel</artifactId>
  21. <version>2.2.6</version>
  22. </dependency>
  23. <!-- 引用亚马逊s3包 start-->
  24. <!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-s3 -->
  25. <dependency>
  26. <groupId>com.amazonaws</groupId>
  27. <artifactId>aws-java-sdk-s3</artifactId>
  28. <version>1.11.604</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.amazonaws</groupId>
  32. <artifactId>aws-java-sdk-core</artifactId>
  33. <version>1.11.604</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.crunii.microservice</groupId>
  37. <artifactId>micro-domain</artifactId>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>com.jshx</groupId>-->
  41. <!-- <artifactId>aws-java-sdk-s3</artifactId>-->
  42. <!-- <version>1.11.604</version>-->
  43. <!-- </dependency>-->
  44. <!-- java获取视频时长、分辨率、帧率、码率 -->
  45. <dependency>
  46. <groupId>com.huaweicloud</groupId>
  47. <artifactId>esdk-obs-java-bundle</artifactId>
  48. <version>[3.21.11,)</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.crunii.microservice</groupId>
  52. <artifactId>micro-core</artifactId>
  53. </dependency>
  54. <!-- <dependency>-->
  55. <!-- <groupId>com.jshx</groupId>-->
  56. <!-- <artifactId>aws-java-sdk-s3</artifactId>-->
  57. <!-- <version>1.11.604</version>-->
  58. <!-- </dependency>-->
  59. </dependencies>
  60. <properties>
  61. <maven.compiler.source>1.8</maven.compiler.source>
  62. <maven.compiler.target>1.8</maven.compiler.target>
  63. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  64. </properties>
  65. </project>