parent
d35fc522bc
commit
d150a8333d
@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<parent>
|
||||||
|
<artifactId>yudao-framework</artifactId>
|
||||||
|
<groupId>cn.iocoder.cloud</groupId>
|
||||||
|
<version>${revision}</version>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<artifactId>yudao-spring-boot-starter-banner</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>${project.artifactId}</name>
|
||||||
|
<description>Banner 用于在 console 控制台,打印开发文档、接口文档等</description>
|
||||||
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>cn.iocoder.cloud</groupId>
|
||||||
|
<artifactId>yudao-common</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter</artifactId>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
||||||
@ -0,0 +1,20 @@
|
|||||||
|
package cn.iocoder.yudao.framework.banner.config;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.banner.core.BannerApplicationRunner;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Banner 的自动配置类
|
||||||
|
*
|
||||||
|
* @author 芋道源码
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
public class YudaoBannerAutoConfiguration {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public BannerApplicationRunner bannerApplicationRunner() {
|
||||||
|
return new BannerApplicationRunner();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
||||||
|
cn.iocoder.yudao.framework.banner.config.YudaoBannerAutoConfiguration
|
||||||
@ -1,17 +0,0 @@
|
|||||||
芋道源码 http://www.iocoder.cn
|
|
||||||
Application Version: ${yudao.info.version}
|
|
||||||
Spring Boot Version: ${spring-boot.version}
|
|
||||||
|
|
||||||
.__ __. ______ .______ __ __ _______
|
|
||||||
| \ | | / __ \ | _ \ | | | | / _____|
|
|
||||||
| \| | | | | | | |_) | | | | | | | __
|
|
||||||
| . ` | | | | | | _ < | | | | | | |_ |
|
|
||||||
| |\ | | `--' | | |_) | | `--' | | |__| |
|
|
||||||
|__| \__| \______/ |______/ \______/ \______|
|
|
||||||
|
|
||||||
███╗ ██╗ ██████╗ ██████╗ ██╗ ██╗ ██████╗
|
|
||||||
████╗ ██║██╔═══██╗ ██╔══██╗██║ ██║██╔════╝
|
|
||||||
██╔██╗ ██║██║ ██║ ██████╔╝██║ ██║██║ ███╗
|
|
||||||
██║╚██╗██║██║ ██║ ██╔══██╗██║ ██║██║ ██║
|
|
||||||
██║ ╚████║╚██████╔╝ ██████╔╝╚██████╔╝╚██████╔╝
|
|
||||||
╚═╝ ╚═══╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
|
|
||||||
* setup
|
|
||||||
> 提供安装指南
|
|
||||||
* [搭建调试环境](https://gitee.com/zhijiantianya/onemall/docs/setup/quick-start.md)
|
|
||||||
|
|
||||||
* sql
|
|
||||||
> 提供 SQL 文件
|
|
||||||
|
|
||||||
* guides
|
|
||||||
> 提供入门指南
|
|
||||||
* TODO
|
|
||||||
Loading…
Reference in new issue