Compare commits
7 Commits
d08dbf4bee
...
805c056c4c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
805c056c4c | ||
|
|
f554e42dbf | ||
|
|
f3d0829d88 | ||
|
|
cb47ef1536 | ||
|
|
cf5adb9a9e | ||
|
|
ba69c850fd | ||
|
|
a197478d0a |
14
README.md
14
README.md
@@ -4,20 +4,24 @@
|
|||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
To make it easy for you to get started with GitLab, here's a list of recommended next steps.
|
|
||||||
|
|
||||||
Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
|
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# 1. 查看哪些依赖可以升级
|
||||||
mvn versions:display-dependency-updates
|
mvn versions:display-dependency-updates
|
||||||
|
|
||||||
|
# 2. 自动更新 properties 中的版本(如 spring.version)
|
||||||
mvn versions:update-properties
|
mvn versions:update-properties
|
||||||
|
|
||||||
mvn versions:set -DnewVersion=1.0.0-RELEASE
|
# 3. 更新项目自身版本号(比如发布正式版)
|
||||||
|
mvn versions:set -DnewVersion=1.0.0.RELEASE
|
||||||
|
|
||||||
|
# 4. 检查 pom.xml 是否正确
|
||||||
|
|
||||||
|
# 5. 确认无误后,提交更改(删除备份)
|
||||||
|
mvn versions:commit
|
||||||
```
|
```
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|||||||
206
pom.xml
206
pom.xml
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>com.arrokoth.framework.boot</groupId>
|
<groupId>com.arrokoth.framework.boot</groupId>
|
||||||
<artifactId>arrokoth-framework-springboot-dependencies</artifactId>
|
<artifactId>arrokoth-framework-springboot-dependencies</artifactId>
|
||||||
<version>1.1.0.RELEASE</version>
|
<version>1.0.0.RELEASE</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
@@ -16,46 +16,78 @@
|
|||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
|
||||||
<!-- Framework Versions -->
|
<!-- Spring Ecosystem -->
|
||||||
<spring-cloud.version>2025.0.0</spring-cloud.version>
|
<spring-cloud.version>2025.0.0</spring-cloud.version>
|
||||||
<spring-boot.version>3.5.3</spring-boot.version>
|
<spring-boot.version>3.5.6</spring-boot.version>
|
||||||
<mybatis.plus.version>3.5.12</mybatis.plus.version>
|
|
||||||
|
|
||||||
|
<!-- MyBatis & Persistence -->
|
||||||
|
<mybatis.plus.version>3.5.14</mybatis.plus.version>
|
||||||
<pagehelper.boot.version>2.1.1</pagehelper.boot.version>
|
<pagehelper.boot.version>2.1.1</pagehelper.boot.version>
|
||||||
|
|
||||||
<!-- 统一版本号 -->
|
|
||||||
<mybatis-spring.version>3.0.3</mybatis-spring.version>
|
<mybatis-spring.version>3.0.3</mybatis-spring.version>
|
||||||
<hibernate.validator.version>9.0.1.Final</hibernate.validator.version>
|
|
||||||
<!-- Tool Versions -->
|
|
||||||
<lombok.version>1.18.38</lombok.version>
|
|
||||||
<slf4j.version>2.1.0-alpha1</slf4j.version>
|
|
||||||
<hutool.version>5.8.39</hutool.version>
|
|
||||||
|
|
||||||
<awssdk.version>2.32.0</awssdk.version>
|
<!-- Validation -->
|
||||||
|
<hibernate.validator.version>9.1.0.Alpha2</hibernate.validator.version>
|
||||||
|
<jakarta.validation.api.version>3.1.1</jakarta.validation.api.version>
|
||||||
|
|
||||||
<commons.io.version>20030203.000550</commons.io.version>
|
<!-- Logging -->
|
||||||
<commons.pool.version>2.12.0</commons.pool.version>
|
<slf4j.version>2.0.16</slf4j.version>
|
||||||
<commons.lang3.version>3.18.0</commons.lang3.version>
|
<logback.version>1.5.12</logback.version>
|
||||||
<commons.collections4.version>4.5.0</commons.collections4.version>
|
|
||||||
|
|
||||||
<springdoc-openapi.version>1.8.0</springdoc-openapi.version>
|
<!-- Tools -->
|
||||||
<knife4j.version>4.5.0</knife4j.version>
|
<lombok.version>1.18.42</lombok.version>
|
||||||
<swagger.annotations.version>2.2.34</swagger.annotations.version>
|
<hutool.version>5.8.40</hutool.version>
|
||||||
<guava.version>33.4.8-jre</guava.version>
|
<guava.version>33.5.0-jre</guava.version>
|
||||||
<caffeine.version>3.2.2</caffeine.version>
|
<caffeine.version>3.2.2</caffeine.version>
|
||||||
<tika.version>3.2.1</tika.version>
|
<tika.version>3.2.3</tika.version>
|
||||||
<!-- Project Version -->
|
|
||||||
<arrokoth.version>1.1.0.RELEASE</arrokoth.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
|
<!-- Apache Commons -->
|
||||||
|
<commons.io.version>2.16.1</commons.io.version>
|
||||||
|
<commons.lang3.version>3.19.0</commons.lang3.version>
|
||||||
|
<commons.collections4.version>4.5.0</commons.collections4.version>
|
||||||
|
<commons.pool.version>2.12.1</commons.pool.version>
|
||||||
|
|
||||||
|
<!-- AWS SDK -->
|
||||||
|
<awssdk.version>2.35.5</awssdk.version>
|
||||||
|
|
||||||
|
<!-- API Docs -->
|
||||||
|
<knife4j.version>4.5.0</knife4j.version>
|
||||||
|
<swagger.annotations.version>2.2.38</swagger.annotations.version>
|
||||||
|
|
||||||
|
<!-- Arrokoth Framework -->
|
||||||
|
<arrokoth.version>1.0.0.RELEASE</arrokoth.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
<!-- Import Spring Boot & Spring Cloud BOMs (recommended way) -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-dependencies</artifactId>
|
||||||
|
<version>${spring-boot.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||||||
|
<version>${spring-cloud.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
<scope>import</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Apache Commons -->
|
<!-- Apache Commons -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-io</groupId>
|
<groupId>commons-io</groupId>
|
||||||
<artifactId>commons-io</artifactId>
|
<artifactId>commons-io</artifactId>
|
||||||
<version>${commons.io.version}</version>
|
<version>${commons.io.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-lang3</artifactId>
|
||||||
|
<version>${commons.lang3.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.commons</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-collections4</artifactId>
|
<artifactId>commons-collections4</artifactId>
|
||||||
@@ -63,9 +95,11 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.commons</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-lang3</artifactId>
|
<artifactId>commons-pool2</artifactId>
|
||||||
<version>${commons.lang3.version}</version>
|
<version>${commons.pool.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Tika -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.tika</groupId>
|
<groupId>org.apache.tika</groupId>
|
||||||
<artifactId>tika-core</artifactId>
|
<artifactId>tika-core</artifactId>
|
||||||
@@ -80,11 +114,6 @@
|
|||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>software.amazon.awssdk</groupId>
|
|
||||||
<artifactId>s3</artifactId>
|
|
||||||
<version>${awssdk.version}</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Caffeine -->
|
<!-- Caffeine -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@@ -100,12 +129,17 @@
|
|||||||
<version>${guava.version}</version>
|
<version>${guava.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Hibernate Validator -->
|
<!-- Validation -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate.validator</groupId>
|
<groupId>org.hibernate.validator</groupId>
|
||||||
<artifactId>hibernate-validator</artifactId>
|
<artifactId>hibernate-validator</artifactId>
|
||||||
<version>${hibernate.validator.version}</version>
|
<version>${hibernate.validator.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>jakarta.validation</groupId>
|
||||||
|
<artifactId>jakarta.validation-api</artifactId>
|
||||||
|
<version>${jakarta.validation.api.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Hutool -->
|
<!-- Hutool -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@@ -114,13 +148,20 @@
|
|||||||
<version>${hutool.version}</version>
|
<version>${hutool.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Knife4j -->
|
<!-- Knife4j (OpenAPI 3 + Jakarta) -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.xiaoymin</groupId>
|
<groupId>com.github.xiaoymin</groupId>
|
||||||
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
||||||
<version>${knife4j.version}</version>
|
<version>${knife4j.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Swagger Annotations -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.swagger.core.v3</groupId>
|
||||||
|
<artifactId>swagger-annotations-jakarta</artifactId>
|
||||||
|
<version>${swagger.annotations.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Lombok -->
|
<!-- Lombok -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
@@ -130,24 +171,22 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- MyBatis-Plus -->
|
<!-- MyBatis-Plus -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.baomidou</groupId>
|
||||||
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||||||
|
<version>${mybatis.plus.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.baomidou</groupId>
|
<groupId>com.baomidou</groupId>
|
||||||
<artifactId>mybatis-plus-annotation</artifactId>
|
<artifactId>mybatis-plus-annotation</artifactId>
|
||||||
<version>${mybatis.plus.version}</version>
|
<version>${mybatis.plus.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.baomidou</groupId>
|
<groupId>com.baomidou</groupId>
|
||||||
<artifactId>mybatis-plus-extension</artifactId>
|
<artifactId>mybatis-plus-extension</artifactId>
|
||||||
<version>${mybatis.plus.version}</version>
|
<version>${mybatis.plus.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.baomidou</groupId>
|
|
||||||
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
||||||
<version>${mybatis.plus.version}</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- PageHelper -->
|
<!-- PageHelper -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.github.pagehelper</groupId>
|
<groupId>com.github.pagehelper</groupId>
|
||||||
@@ -155,44 +194,7 @@
|
|||||||
<version>${pagehelper.boot.version}</version>
|
<version>${pagehelper.boot.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Spring Boot -->
|
<!-- Arrokoth Framework Modules -->
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-dependencies</artifactId>
|
|
||||||
<version>${spring-boot.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-starter</artifactId>
|
|
||||||
<version>${spring-boot.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-starter-parent</artifactId>
|
|
||||||
<version>${spring-boot.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Spring Cloud -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.cloud</groupId>
|
|
||||||
<artifactId>spring-cloud-dependencies</artifactId>
|
|
||||||
<version>${spring-cloud.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Swagger -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>io.swagger.core.v3</groupId>
|
|
||||||
<artifactId>swagger-annotations-jakarta</artifactId>
|
|
||||||
<version>${swagger.annotations.version}</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- Arrokoth Framework -->
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.arrokoth.framework.boot</groupId>
|
<groupId>com.arrokoth.framework.boot</groupId>
|
||||||
<artifactId>arrokoth-framework-annotation</artifactId>
|
<artifactId>arrokoth-framework-annotation</artifactId>
|
||||||
@@ -277,48 +279,34 @@
|
|||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<!-- <repository>-->
|
<!-- 国内镜像加速 -->
|
||||||
<!-- <id>spring-milestones</id>-->
|
|
||||||
<!-- <name>Spring Milestones</name>-->
|
|
||||||
<!-- <url>https://repo.spring.io/milestone</url>-->
|
|
||||||
<!-- </repository>-->
|
|
||||||
|
|
||||||
<repository>
|
<repository>
|
||||||
<releases>
|
<id>aliyun</id>
|
||||||
<enabled>false</enabled>
|
<name>Aliyun Maven</name>
|
||||||
</releases>
|
<url>https://maven.aliyun.com/repository/public</url>
|
||||||
<snapshots>
|
<releases><enabled>true</enabled></releases>
|
||||||
<enabled>true</enabled>
|
<snapshots><enabled>false</enabled></snapshots>
|
||||||
</snapshots>
|
|
||||||
<id>apache.snapshots</id>
|
|
||||||
<name>Apache Development Snapshot Repository</name>
|
|
||||||
<url>https://repository.apache.org/snapshots</url>
|
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
<!-- 依赖仓库配置 -->
|
|
||||||
<repository>
|
<repository>
|
||||||
<id>huawei-mirror</id>
|
<id>huawei</id>
|
||||||
<name>HuaweiCloud Mirror</name>
|
<name>Huawei Cloud Maven</name>
|
||||||
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
||||||
</repository>
|
<releases><enabled>true</enabled></releases>
|
||||||
<repository>
|
<snapshots><enabled>false</enabled></snapshots>
|
||||||
<id>ali-mirror</id>
|
|
||||||
<name>AliYun Mirror</name>
|
|
||||||
<url>https://maven.aliyun.com/repository/public/</url>
|
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<!-- 插件仓库配置 -->
|
|
||||||
<pluginRepositories>
|
<pluginRepositories>
|
||||||
<pluginRepository>
|
<pluginRepository>
|
||||||
<id>huawei-mirror</id>
|
<id>aliyun</id>
|
||||||
<name>HuaweiCloud Mirror</name>
|
<name>Aliyun Maven</name>
|
||||||
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
<url>https://maven.aliyun.com/repository/public</url>
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
<pluginRepository>
|
<pluginRepository>
|
||||||
<id>ali-mirror</id>
|
<id>huawei</id>
|
||||||
<name>AliYun Mirror</name>
|
<name>Huawei Cloud Maven</name>
|
||||||
<url>https://maven.aliyun.com/repository/public/</url>
|
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
</pluginRepositories>
|
</pluginRepositories>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
Reference in New Issue
Block a user