chore: 更新版本号为 3.0.0-SNAPSHOT

This commit is contained in:
Charles7c 2024-03-24 16:31:42 +08:00
parent e5cddd05ba
commit c021feb48d
4 changed files with 16 additions and 6 deletions

View File

@ -4,7 +4,7 @@
<img src="https://img.shields.io/badge/License-Apache--2.0-blue.svg" alt="License" /> <img src="https://img.shields.io/badge/License-Apache--2.0-blue.svg" alt="License" />
</a> </a>
<a href="https://github.com/Charles7c/continew-admin" target="_blank"> <a href="https://github.com/Charles7c/continew-admin" target="_blank">
<img src="https://img.shields.io/badge/RELEASE-v2.5.0-%23ff3f59.svg" alt="Release" /> <img src="https://img.shields.io/badge/SNAPSHOT-v3.0.0-%23ff3f59.svg" alt="Release" />
</a> </a>
<a href="https://app.codacy.com/gh/Charles7c/continew-admin/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade" target="_blank"> <a href="https://app.codacy.com/gh/Charles7c/continew-admin/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade" target="_blank">
<img src="https://app.codacy.com/project/badge/Grade/19e3e2395d554efe902c3822e65db30e" alt="Codacy Badge" /> <img src="https://app.codacy.com/project/badge/Grade/19e3e2395d554efe902c3822e65db30e" alt="Codacy Badge" />
@ -13,7 +13,7 @@
<img src="https://sonarcloud.io/api/project_badges/measure?project=Charles7c_continew-admin&metric=alert_status" alt="Sonar Status" /> <img src="https://sonarcloud.io/api/project_badges/measure?project=Charles7c_continew-admin&metric=alert_status" alt="Sonar Status" />
</a> </a>
<a href="https://github.com/Charles7c/continew-starter" target="_blank"> <a href="https://github.com/Charles7c/continew-starter" target="_blank">
<img src="https://img.shields.io/badge/ContiNew Starter-1.5.1-%236CB52D.svg" alt="ContiNew Starter" /> <img src="https://img.shields.io/badge/ContiNew Starter-2.0.0-%236CB52D.svg" alt="ContiNew Starter" />
</a> </a>
<a href="https://spring.io/projects/spring-boot" target="_blank"> <a href="https://spring.io/projects/spring-boot" target="_blank">
<img src="https://img.shields.io/badge/Spring Boot-3.1.9-%236CB52D.svg?logo=Spring-Boot" alt="Spring Boot" /> <img src="https://img.shields.io/badge/Spring Boot-3.1.9-%236CB52D.svg?logo=Spring-Boot" alt="Spring Boot" />

View File

@ -5,5 +5,5 @@
\____|\___/ |_| |_| \__||_||_| \_| \___| \_/\_/ /_/ \_\\__,_||_| |_| |_||_||_| |_| \____|\___/ |_| |_| \__||_||_| \_| \___| \_/\_/ /_/ \_\\__,_||_| |_| |_||_||_| |_|
:: ${project.name} :: v${project.version} :: ${project.name} :: v${project.version}
:: ContiNew Starter :: v1.5.1 :: ContiNew Starter :: v2.0.0-SNAPSHOT
:: Spring Boot :: v${spring-boot.version} :: Spring Boot :: v${spring-boot.version}

View File

@ -5,7 +5,7 @@ project:
# 应用名称 # 应用名称
app-name: continew-admin app-name: continew-admin
# 版本 # 版本
version: 2.5.0 version: 3.0.0-SNAPSHOT
# 描述 # 描述
description: 持续迭代优化的前后端分离中后台管理系统框架,开箱即用,持续提供舒适的开发体验。 description: 持续迭代优化的前后端分离中后台管理系统框架,开箱即用,持续提供舒适的开发体验。
# 基本包 # 基本包

14
pom.xml
View File

@ -12,7 +12,7 @@
<parent> <parent>
<groupId>top.charles7c.continew</groupId> <groupId>top.charles7c.continew</groupId>
<artifactId>continew-starter</artifactId> <artifactId>continew-starter</artifactId>
<version>1.5.1</version> <version>2.0.0-SNAPSHOT</version>
</parent> </parent>
<groupId>top.charles7c.continew</groupId> <groupId>top.charles7c.continew</groupId>
@ -32,7 +32,7 @@
<properties> <properties>
<!-- 项目版本号 --> <!-- 项目版本号 -->
<revision>2.5.0</revision> <revision>3.0.0-SNAPSHOT</revision>
</properties> </properties>
<!-- 全局依赖版本管理 --> <!-- 全局依赖版本管理 -->
@ -205,6 +205,16 @@
<name>AliYun Mirror</name> <name>AliYun Mirror</name>
<url>https://maven.aliyun.com/repository/public/</url> <url>https://maven.aliyun.com/repository/public/</url>
</repository> </repository>
<!-- 快照仓库(仅在 ContiNew Admin 开发版使用,稳定版发布时会移除) -->
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<updatePolicy>always</updatePolicy>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories> </repositories>
<!-- 插件仓库配置 --> <!-- 插件仓库配置 -->