Skip to content

Commit

Permalink
Merge pull request #123 from 1171736840/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
1171736840 authored Oct 18, 2023
2 parents a99d15f + bf6d927 commit b2b8b7b
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ Gitee:https://gitee.com/dromara/x-file-storage
```xml
<!-- 引入本项目 -->
<dependency>
<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-spring</artifactId>
<version>1.0.3</version>
<version>2.0.0</version>
</dependency>
<!-- 引入 阿里云 OSS SDK,如果使用其它存储平台,就引入对应的 SDK -->
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions docs/快速入门.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

```xml
<dependency>
<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-spring</artifactId>
<version>1.0.3</version>
<version>2.0.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/更新记录.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

```xml
<dependency>
<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-spring</artifactId>
<version>2.0.0</version>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions docs/脱离SpringBoot单独使用.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

```xml
<dependency>
<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-core</artifactId>
<version>1.0.3</version>
<version>2.0.0</version>
</dependency>
```

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
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>

<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.3</version>
<version>2.0.0</version>

<name>x-file-storage-parent</name>
<description>A File Storage Service</description>
Expand Down Expand Up @@ -83,13 +83,13 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-spring</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-core</artifactId>
<version>${project.version}</version>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions x-file-storage-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>x-file-storage-parent</artifactId>
<groupId>org.dromara</groupId>
<version>1.0.3</version>
<groupId>org.dromara.x-file-storage</groupId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>x-file-storage-core</artifactId>
<version>1.0.3</version>
<version>2.0.0</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand Down
6 changes: 3 additions & 3 deletions x-file-storage-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>x-file-storage-parent</artifactId>
<groupId>org.dromara</groupId>
<version>1.0.3</version>
<groupId>org.dromara.x-file-storage</groupId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>x-file-storage-spring</artifactId>

<dependencies>
<dependency>
<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-core</artifactId>
</dependency>

Expand Down
8 changes: 4 additions & 4 deletions x-file-storage-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<relativePath/> <!-- lookup parent from repository -->
</parent>

<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-test</artifactId>
<version>1.0.3</version>
<version>2.0.0</version>
<name>x-file-storage-test</name>
<description>x-file-storage 的测试和演示模块</description>

Expand Down Expand Up @@ -148,9 +148,9 @@
</dependency>

<dependency>
<groupId>org.dromara</groupId>
<groupId>org.dromara.x-file-storage</groupId>
<artifactId>x-file-storage-spring</artifactId>
<version>1.0.3</version>
<version>2.0.0</version>
</dependency>

<dependency>
Expand Down

0 comments on commit b2b8b7b

Please sign in to comment.