Skip to content

Commit

Permalink
build: v2.0 项目结构调整
Browse files Browse the repository at this point in the history
  • Loading branch information
fxbin committed Aug 17, 2023
1 parent 47bf333 commit 142ca93
Show file tree
Hide file tree
Showing 240 changed files with 175 additions and 1,538 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# bubble fireworks 🎉🎉🎉
# bubble 🎉🎉🎉

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/63f51f8ee55f42bd8284c1c04e2b6f7d)](https://app.codacy.com/manual/fxbin/bubble-fireworks?utm_source=github.com&utm_medium=referral&utm_content=fxbin/bubble-fireworks&utm_campaign=Badge_Grade_Settings)
[![Spring Boot](https://img.shields.io/badge/SpringBoot-2.7.14-brightgreen.svg)](https://github.com/spring-projects/spring-boot)
Expand All @@ -11,7 +11,7 @@

## 项目简介

`bubble-fireworks` 旨在为项目快速开发提供一系列的基础能力,方便使用者根据项目需求快速进行功能拓展。已将所有 JAR 包都推送至中央仓库,也会为每个版本的升级改动列出详细的更新日志
`bubble` 旨在为项目快速开发提供一系列的基础能力,方便使用者根据项目需求快速进行功能拓展。已将所有 JAR 包都推送至中央仓库,也会为每个版本的升级改动列出详细的更新日志

## 更新记录详见
[项目更新记录](CHANGELOG.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-parent</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<relativePath>../bubble-fireworks-parent/pom.xml</relativePath>
<artifactId>bubble-parent</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<relativePath>../bubble-parent/pom.xml</relativePath>
</parent>

<artifactId>bubble-fireworks-core</artifactId>
<name>Bubble Fireworks Core</name>
<description>Bubble Fireworks Core: core util</description>
<artifactId>bubble-core</artifactId>
<name>Bubble Core</name>
<description>Bubble Core: core util</description>

<dependencies>
<!-- spring-boot-starter-json -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-build</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
<artifactId>bubble-build</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>bubble-fireworks-dependencies</artifactId>
<artifactId>bubble-dependencies</artifactId>
<packaging>pom</packaging>
<name>Bubble Fireworks Dependencies</name>
<description>Bubble Fireworks Project Dependencies: manager jar version dependency, Use as a BOM </description>
<name>Bubble Dependencies</name>
<description>Bubble Project Dependencies: manager jar version dependency, Use as a BOM </description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -55,93 +55,93 @@

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-core</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-core</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<!-- bubble fireworks starters -->
<!-- bubble-spring-boot-starters -->
<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-web</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-web</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-test</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-test</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-logging</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-logging</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-openfeign</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-openfeign</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-data-redis</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-data-redis</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-data-mybatis-plus</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-data-mybatis-plus</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-data-elasticsearch</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-data-elasticsearch</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-plugin-lock</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-lock</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-plugin-excel</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-excel</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-plugin-token</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-token</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-plugin-xxl-job</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-xxl-job</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-plugin-dynamic-threadpool</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-dynamic-threadpool</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>cn.fxbin.bubble</groupId>
<artifactId>bubble-fireworks-starter-i18n</artifactId>
<version>2022.0.2.BUILD-SNAPSHOT</version>
<artifactId>bubble-spring-boot-starter-i18n</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>

<!-- Spring Boot POM -->
Expand Down
41 changes: 0 additions & 41 deletions bubble-fireworks-project/bubble-fireworks-starters/pom.xml

This file was deleted.

26 changes: 0 additions & 26 deletions bubble-fireworks-project/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 142ca93

Please sign in to comment.