| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?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>
- <artifactId>sckw-modules</artifactId>
- <groupId>com.sckw</groupId>
- <version>1.0.0</version>
- </parent>
- <!-- <groupId>com.sckw</groupId>-->
- <artifactId>sckw-file</artifactId>
- <version>1.0.0</version>
- <description>文件服务</description>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-remote</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-core</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-datasource</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-redis</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-excel</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-system-api</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!--alibaba oss-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alicloud-oss</artifactId>
- <version>2.2.0.RELEASE</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>com.aliyun.oss</groupId>-->
- <!-- <artifactId>aliyun-sdk-oss</artifactId>-->
- <!-- <version>3.8.0</version>-->
- <!-- <scope>compile</scope>-->
- <!-- </dependency>-->
- <!--jdk9+ 以上需要手动添加-->
- <dependency>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- <version>2.3.1</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>3.0.5</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-excel</artifactId>
- <version>1.0.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|