| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?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-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>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <!--注册中心客户端-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- </dependency>
- <!--配置中心客户端-->
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-bootstrap</artifactId>
- </dependency>
- </dependencies>
- </project>
|