diff --git a/pom.xml b/pom.xml index a407a1d..ba3a233 100644 --- a/pom.xml +++ b/pom.xml @@ -183,6 +183,7 @@ ruoyi-application ruoyi-basic + ruoyi-custom pom diff --git a/ruoyi-application/src/main/resources/banner.txt b/ruoyi-application/src/main/resources/banner.txt index c0e09cd..ec6e32d 100644 --- a/ruoyi-application/src/main/resources/banner.txt +++ b/ruoyi-application/src/main/resources/banner.txt @@ -1,2 +1,17 @@ Application Version: ${ruoyi.version} Spring Boot Version: ${spring-boot.version} + ,--, +,---.'| ,--, +| | : ,--.'| +: : | ,--, ,---, ,--, | : +| ' : ,--.'| ,--, /_ ./| ,--, ,---, ,---.'| : ' ,--, +; ; ' | |, ,'_ /| ,---, | ' : ,'_ /| ,-+-. / || | : _' | ,'_ /| +' | |__ `--'_ .--. | | :/___/ \. : | .--. | | : ,--.'|' |: : |.' | .--. | | : +| | :.'|,' ,'| ,'_ /| : . | . \ \ ,' ','_ /| : . || | ,"' || ' ' ; :,'_ /| : . | +' : ;' | | | ' | | . . \ ; ` ,'| ' | | . .| | / | |' | .'. || ' | | . . +| | ./ | | : | | ' | | | \ \ ' | | ' | | || | | | || | : | '| | ' | | | +; : ; ' : |__ : | : ; ; | ' \ | : | : ; ; || | | |/ ' : | : ;: | : ; ; | +| ,/ | | '.'|' : `--' \ \ ; ; ' : `--' \ | |--' | | ' ,/ ' : `--' \ +'---' ; : ;: , .-./ : \ \: , .-./ |/ ; : ;--' : , .-./ + | , / `--`----' \ ' ; `--`----' '---' | ,/ `--`----' + ---`-' `--` '---' diff --git a/ruoyi-custom/pom.xml b/ruoyi-custom/pom.xml new file mode 100644 index 0000000..7561b87 --- /dev/null +++ b/ruoyi-custom/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + com.muyu + ruoyi + 3.8.6 + + + ruoyi-custom + + + 17 + 17 + UTF-8 + + + diff --git a/ruoyi-custom/src/main/java/com/muyu/Main.java b/ruoyi-custom/src/main/java/com/muyu/Main.java new file mode 100644 index 0000000..727ba27 --- /dev/null +++ b/ruoyi-custom/src/main/java/com/muyu/Main.java @@ -0,0 +1,15 @@ +package com.muyu; + +/** + * $DESCRIPTION + * + * @ProjectName: Default (Template) Project + * @Author: LiuYunHu + * @CreateTime: 2024/4/22 17:10 + */ + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +}