Skip to content
Merged
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
5 changes: 1 addition & 4 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,6 @@ ApiBoot正式版本都会发布到Maven Center,如果你想使用源码最新

该模块继承自`api-boot-dependencies`,可直接使用固化版本后的依赖,是构建其他模块的统一父依赖。

### api-boot-plugins

该模块提供了集成第三方依赖的插件列表,每当新增集成一个第三方组件都会在该模块下对应创建一个子模块、

### api-boot-starters

Expand Down Expand Up @@ -163,4 +160,4 @@ ApiBoot采用Apache2开源许可进行编写。

## 开源支持

<a href="https://www.jetbrains.com/?from=api-boot"><img src="https://apiboot.minbox.org/img/jetbrains.png" width="100" heith="100"/></a>
<a href="https://www.jetbrains.com/?from=api-boot"><img src="https://apiboot.minbox.org/img/jetbrains.png" width="100" heith="100"/></a>
5 changes: 0 additions & 5 deletions api-boot-project/api-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,6 @@
<artifactId>api-boot-common</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.minbox.framework</groupId>
<artifactId>api-boot-plugin-resource-load</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.minbox.framework</groupId>
<artifactId>api-boot-tools</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
*/
package org.minbox.framework.api.boot.autoconfigure.resource;

import org.minbox.framework.api.boot.plugin.resource.load.ApiBootResourceStoreDelegate;
import org.minbox.framework.api.boot.plugin.resource.load.aop.advistor.ApiBootResourceLoadAdvisor;
import org.minbox.framework.api.boot.plugin.resource.load.aop.interceptor.ApiBootResourceLoadMethodInterceptor;
import org.minbox.framework.api.boot.plugin.resource.load.pusher.ApiBootResourcePusher;
import org.minbox.framework.api.boot.plugin.resource.load.pusher.support.ApiBootMemoryResourcePusher;
import org.minbox.framework.api.boot.resource.ApiBootResourceStoreDelegate;
import org.minbox.framework.api.boot.resource.aop.advistor.ApiBootResourceLoadAdvisor;
import org.minbox.framework.api.boot.resource.aop.interceptor.ApiBootResourceLoadMethodInterceptor;
import org.minbox.framework.api.boot.resource.pusher.ApiBootResourcePusher;
import org.minbox.framework.api.boot.resource.pusher.support.ApiBootMemoryResourcePusher;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
Expand All @@ -32,13 +32,7 @@
/**
* ApiBoot Resource Load Auto Config
*
* @author:恒宇少年 - 于起宇
* <p>
* DateTime:2019-04-12 13:30
* Blog:http://blog.yuqiyu.com
* WebSite:http://www.jianshu.com/u/092df3f77bca
* Gitee:https://gitee.com/hengboy
* GitHub:https://github.com/hengboy
* @author 恒宇少年
*/
@Configuration
@ConditionalOnClass(ApiBootResourceStoreDelegate.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

package org.minbox.framework.api.boot.autoconfigure.resource;

import org.minbox.framework.api.boot.plugin.resource.load.ApiBootResourceStoreDelegate;
import org.minbox.framework.api.boot.plugin.resource.load.pusher.support.ApiBootRedisResourcePusher;
import org.minbox.framework.api.boot.resource.ApiBootResourceStoreDelegate;
import org.minbox.framework.api.boot.resource.pusher.support.ApiBootRedisResourcePusher;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
Expand All @@ -29,13 +29,9 @@
import org.springframework.data.redis.core.RedisTemplate;

/**
* @author:恒宇少年 - 于起宇
* <p>
* DateTime:2019-04-19 10:46
* Blog:http://blog.yuqiyu.com
* WebSite:http://www.jianshu.com/u/092df3f77bca
* Gitee:https://gitee.com/hengboy
* GitHub:https://github.com/hengboy
* Automatic configuration implemented by Redis
*
* @author 恒宇少年
*/
@Configuration
@ConditionalOnClass(RedisTemplate.class)
Expand Down
12 changes: 0 additions & 12 deletions api-boot-project/api-boot-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,6 @@
<artifactId>api-boot-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.minbox.framework</groupId>
<artifactId>api-boot-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.minbox.framework</groupId>
<artifactId>api-boot-tools</artifactId>
Expand Down Expand Up @@ -378,13 +373,6 @@
<artifactId>mongodb-driver-sync</artifactId>
<version>${mongo-driver-sync.version}</version>
</dependency>

<!--wait remove-->
<dependency>
<groupId>org.minbox.framework</groupId>
<artifactId>api-boot-plugin-resource-load</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
17 changes: 0 additions & 17 deletions api-boot-project/api-boot-plugins/README.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

40 changes: 0 additions & 40 deletions api-boot-project/api-boot-plugins/api-boot-plugin/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

Loading