Skip to content

Commit

Permalink
⚡ Commit content:
Browse files Browse the repository at this point in the history
- 增加了 FastDFS 相关的功能
- 增加了 FastDFS Test 测试相关的功能
  • Loading branch information
tonycody committed Oct 24, 2023
1 parent 434e030 commit 21b30d2
Show file tree
Hide file tree
Showing 25 changed files with 1,484 additions and 163 deletions.
20 changes: 9 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,18 @@

<dependencyManagement>
<dependencies>
<!--region 1rd-->
<dependency>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-spring</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-core</artifactId>
<version>${project.version}</version>
</dependency>
<!--endregion-->
<!-- javax.servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
Expand Down Expand Up @@ -161,16 +162,12 @@
<!--糊涂工具类核心-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-core</artifactId>
<artifactId>hutool-bom</artifactId>
<version>${hutool.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-extra</artifactId>
<version>${hutool.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<!--region Spring Boot-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
Expand All @@ -183,12 +180,14 @@
<version>${spring-boot.version}</version>
<optional>true</optional>
</dependency>
<!--endregion-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<!--region 所有存储平台-->
<!-- 华为云 OBS -->
<dependency>
<groupId>com.huaweicloud</groupId>
Expand Down Expand Up @@ -298,10 +297,9 @@
<groupId>io.github.rui8832</groupId>
<artifactId>fastdfs-client-java</artifactId>
<version>${fastdfs-client-java.version}</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>

<!--endregion-->
</dependencies>
</dependencyManagement>

Expand Down
11 changes: 10 additions & 1 deletion x-file-storage-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,19 @@
<dependency>
<groupId>io.github.rui8832</groupId>
<artifactId>fastdfs-client-java</artifactId>
<scope>provided</scope>
<optional>true</optional>
</dependency>

<!-- <dependency>-->
<!-- <groupId>org.csource</groupId>-->
<!-- <artifactId>fastdfs-client</artifactId>-->
<!-- &lt;!&ndash; <version>${fastdfs-client-java.version}</version>&ndash;&gt;-->
<!-- <version>1.0</version>-->
<!-- <scope>system</scope>-->
<!-- <systemPath>C:/Users/XS/.m2/repository/org/csource/fastdfs-client/1.25/fastdfs-client-1.25.jar</systemPath>-->
<!-- <optional>true</optional>-->
<!-- </dependency>-->

<!--糊涂工具类核心-->
<dependency>
<groupId>cn.hutool</groupId>
Expand Down
Loading

0 comments on commit 21b30d2

Please sign in to comment.