1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?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.crunii.microservice</groupId>
- <artifactId>service-study-center</artifactId>
- <version>${micro.version}</version>
- </parent>
- <artifactId>service-study-center-biz</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.jcraft</groupId>
- <artifactId>jsch</artifactId>
- <version>0.1.54</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>2.2.6</version>
- </dependency>
- <!-- 引用亚马逊s3包 start-->
- <!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-s3 -->
- <dependency>
- <groupId>com.amazonaws</groupId>
- <artifactId>aws-java-sdk-s3</artifactId>
- <version>1.11.604</version>
- </dependency>
- <dependency>
- <groupId>com.amazonaws</groupId>
- <artifactId>aws-java-sdk-core</artifactId>
- <version>1.11.604</version>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>micro-domain</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.jshx</groupId>-->
- <!-- <artifactId>aws-java-sdk-s3</artifactId>-->
- <!-- <version>1.11.604</version>-->
- <!-- </dependency>-->
- <!-- java获取视频时长、分辨率、帧率、码率 -->
- <dependency>
- <groupId>com.huaweicloud</groupId>
- <artifactId>esdk-obs-java-bundle</artifactId>
- <version>[3.21.11,)</version>
- </dependency>
- <dependency>
- <groupId>com.crunii.microservice</groupId>
- <artifactId>micro-core</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.jshx</groupId>-->
- <!-- <artifactId>aws-java-sdk-s3</artifactId>-->
- <!-- <version>1.11.604</version>-->
- <!-- </dependency>-->
- </dependencies>
- <properties>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- </project>
|