Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.28 (2024-05-17)

升级提示:

- 代码没有改动,默认JDK升级到17版本
- 代码没有改动,默认SpringBoot升级到3.1.8版本
## 1.27.2 (2020-2-11)

BugFixes:
Expand Down
27 changes: 14 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.github.tobato</groupId>
<artifactId>fastdfs-client</artifactId>
<version>1.27.3-SNAPSHOT</version>
<version>1.28</version>
<packaging>jar</packaging>
<!-- x-SNAPSHOT -->

Expand Down Expand Up @@ -36,27 +36,24 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
<relativePath/>
<version>3.1.8</version>
</parent>

<properties>
<!-- commons utils -->
<commons-lang3.version>3.3.2</commons-lang3.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-beanutils.version>1.9.4</commons-beanutils.version>

<mockito.version>1.9.5</mockito.version>
<hibernate-validator.version>6.0.8.Final</hibernate-validator.version>

<!-- 软件发布版本 -->
<copyright.year>2016</copyright.year>
<copyright.year>2024</copyright.year>

<!-- Plugin的属性定义 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<java.version>17</java.version>

<!-- 本地发布服务器 -->
<local.nexus>192.168.129.12:8081</local.nexus>
<!-- <local.nexus>192.168.129.12:8081</local.nexus>-->

</properties>

Expand All @@ -83,7 +80,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down Expand Up @@ -134,7 +131,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -230,7 +227,11 @@
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>

<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
Expand All @@ -251,7 +252,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<version>1.10.19</version>
<scope>test</scope>
</dependency>

Expand Down