Compare commits
7 Commits
d08dbf4bee
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
805c056c4c | ||
|
|
f554e42dbf | ||
|
|
f3d0829d88 | ||
|
|
cb47ef1536 | ||
|
|
cf5adb9a9e | ||
|
|
ba69c850fd | ||
|
|
a197478d0a |
14
README.md
14
README.md
@@ -4,20 +4,24 @@
|
||||
|
||||
## 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
|
||||
|
||||
# 2. 自动更新 properties 中的版本(如 spring.version)
|
||||
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>
|
||||
<artifactId>arrokoth-framework-springboot-dependencies</artifactId>
|
||||
<version>1.1.0.RELEASE</version>
|
||||
<version>1.0.0.RELEASE</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<properties>
|
||||
@@ -16,46 +16,78 @@
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
|
||||
<!-- Framework Versions -->
|
||||
<!-- Spring Ecosystem -->
|
||||
<spring-cloud.version>2025.0.0</spring-cloud.version>
|
||||
<spring-boot.version>3.5.3</spring-boot.version>
|
||||
<mybatis.plus.version>3.5.12</mybatis.plus.version>
|
||||
<spring-boot.version>3.5.6</spring-boot.version>
|
||||
|
||||
|
||||
<!-- MyBatis & Persistence -->
|
||||
<mybatis.plus.version>3.5.14</mybatis.plus.version>
|
||||
<pagehelper.boot.version>2.1.1</pagehelper.boot.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>
|
||||
<commons.pool.version>2.12.0</commons.pool.version>
|
||||
<commons.lang3.version>3.18.0</commons.lang3.version>
|
||||
<commons.collections4.version>4.5.0</commons.collections4.version>
|
||||
<!-- Logging -->
|
||||
<slf4j.version>2.0.16</slf4j.version>
|
||||
<logback.version>1.5.12</logback.version>
|
||||
|
||||
<springdoc-openapi.version>1.8.0</springdoc-openapi.version>
|
||||
<knife4j.version>4.5.0</knife4j.version>
|
||||
<swagger.annotations.version>2.2.34</swagger.annotations.version>
|
||||
<guava.version>33.4.8-jre</guava.version>
|
||||
<!-- Tools -->
|
||||
<lombok.version>1.18.42</lombok.version>
|
||||
<hutool.version>5.8.40</hutool.version>
|
||||
<guava.version>33.5.0-jre</guava.version>
|
||||
<caffeine.version>3.2.2</caffeine.version>
|
||||
<tika.version>3.2.1</tika.version>
|
||||
<!-- Project Version -->
|
||||
<arrokoth.version>1.1.0.RELEASE</arrokoth.version>
|
||||
</properties>
|
||||
<tika.version>3.2.3</tika.version>
|
||||
|
||||
<!-- 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>
|
||||
<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 -->
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<version>${commons.io.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
<version>${commons.lang3.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-collections4</artifactId>
|
||||
@@ -63,9 +95,11 @@
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
<version>${commons.lang3.version}</version>
|
||||
<artifactId>commons-pool2</artifactId>
|
||||
<version>${commons.pool.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Tika -->
|
||||
<dependency>
|
||||
<groupId>org.apache.tika</groupId>
|
||||
<artifactId>tika-core</artifactId>
|
||||
@@ -80,11 +114,6 @@
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>software.amazon.awssdk</groupId>
|
||||
<artifactId>s3</artifactId>
|
||||
<version>${awssdk.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Caffeine -->
|
||||
<dependency>
|
||||
@@ -100,12 +129,17 @@
|
||||
<version>${guava.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Hibernate Validator -->
|
||||
<!-- Validation -->
|
||||
<dependency>
|
||||
<groupId>org.hibernate.validator</groupId>
|
||||
<artifactId>hibernate-validator</artifactId>
|
||||
<version>${hibernate.validator.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.validation</groupId>
|
||||
<artifactId>jakarta.validation-api</artifactId>
|
||||
<version>${jakarta.validation.api.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Hutool -->
|
||||
<dependency>
|
||||
@@ -114,13 +148,20 @@
|
||||
<version>${hutool.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Knife4j -->
|
||||
<!-- Knife4j (OpenAPI 3 + Jakarta) -->
|
||||
<dependency>
|
||||
<groupId>com.github.xiaoymin</groupId>
|
||||
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
||||
<version>${knife4j.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Swagger Annotations -->
|
||||
<dependency>
|
||||
<groupId>io.swagger.core.v3</groupId>
|
||||
<artifactId>swagger-annotations-jakarta</artifactId>
|
||||
<version>${swagger.annotations.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Lombok -->
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
@@ -130,24 +171,22 @@
|
||||
</dependency>
|
||||
|
||||
<!-- MyBatis-Plus -->
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||||
<version>${mybatis.plus.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-annotation</artifactId>
|
||||
<version>${mybatis.plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-extension</artifactId>
|
||||
<version>${mybatis.plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||||
<version>${mybatis.plus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- PageHelper -->
|
||||
<dependency>
|
||||
<groupId>com.github.pagehelper</groupId>
|
||||
@@ -155,44 +194,7 @@
|
||||
<version>${pagehelper.boot.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Spring Boot -->
|
||||
<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 -->
|
||||
<!-- Arrokoth Framework Modules -->
|
||||
<dependency>
|
||||
<groupId>com.arrokoth.framework.boot</groupId>
|
||||
<artifactId>arrokoth-framework-annotation</artifactId>
|
||||
@@ -277,48 +279,34 @@
|
||||
</dependencyManagement>
|
||||
|
||||
<repositories>
|
||||
<!-- <repository>-->
|
||||
<!-- <id>spring-milestones</id>-->
|
||||
<!-- <name>Spring Milestones</name>-->
|
||||
<!-- <url>https://repo.spring.io/milestone</url>-->
|
||||
<!-- </repository>-->
|
||||
|
||||
<!-- 国内镜像加速 -->
|
||||
<repository>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
<id>apache.snapshots</id>
|
||||
<name>Apache Development Snapshot Repository</name>
|
||||
<url>https://repository.apache.org/snapshots</url>
|
||||
<id>aliyun</id>
|
||||
<name>Aliyun Maven</name>
|
||||
<url>https://maven.aliyun.com/repository/public</url>
|
||||
<releases><enabled>true</enabled></releases>
|
||||
<snapshots><enabled>false</enabled></snapshots>
|
||||
</repository>
|
||||
|
||||
<!-- 依赖仓库配置 -->
|
||||
<repository>
|
||||
<id>huawei-mirror</id>
|
||||
<name>HuaweiCloud Mirror</name>
|
||||
<id>huawei</id>
|
||||
<name>Huawei Cloud Maven</name>
|
||||
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>ali-mirror</id>
|
||||
<name>AliYun Mirror</name>
|
||||
<url>https://maven.aliyun.com/repository/public/</url>
|
||||
<releases><enabled>true</enabled></releases>
|
||||
<snapshots><enabled>false</enabled></snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<!-- 插件仓库配置 -->
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>huawei-mirror</id>
|
||||
<name>HuaweiCloud Mirror</name>
|
||||
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
||||
<id>aliyun</id>
|
||||
<name>Aliyun Maven</name>
|
||||
<url>https://maven.aliyun.com/repository/public</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>ali-mirror</id>
|
||||
<name>AliYun Mirror</name>
|
||||
<url>https://maven.aliyun.com/repository/public/</url>
|
||||
<id>huawei</id>
|
||||
<name>Huawei Cloud Maven</name>
|
||||
<url>https://mirrors.huaweicloud.com/repository/maven/</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user