liuyunhu 2024-04-22 17:22:44 +08:00
parent 22498a253d
commit 8f4cc5e9f3
4 changed files with 51 additions and 0 deletions

View File

@ -183,6 +183,7 @@
<modules>
<module>ruoyi-application</module>
<module>ruoyi-basic</module>
<module>ruoyi-custom</module>
</modules>
<packaging>pom</packaging>

View File

@ -1,2 +1,17 @@
Application Version: ${ruoyi.version}
Spring Boot Version: ${spring-boot.version}
,--,
,---.'| ,--,
| | : ,--.'|
: : | ,--, ,---, ,--, | :
| ' : ,--.'| ,--, /_ ./| ,--, ,---, ,---.'| : ' ,--,
; ; ' | |, ,'_ /| ,---, | ' : ,'_ /| ,-+-. / || | : _' | ,'_ /|
' | |__ `--'_ .--. | | :/___/ \. : | .--. | | : ,--.'|' |: : |.' | .--. | | :
| | :.'|,' ,'| ,'_ /| : . | . \ \ ,' ','_ /| : . || | ,"' || ' ' ; :,'_ /| : . |
' : ;' | | | ' | | . . \ ; ` ,'| ' | | . .| | / | |' | .'. || ' | | . .
| | ./ | | : | | ' | | | \ \ ' | | ' | | || | | | || | : | '| | ' | | |
; : ; ' : |__ : | : ; ; | ' \ | : | : ; ; || | | |/ ' : | : ;: | : ; ; |
| ,/ | | '.'|' : `--' \ \ ; ; ' : `--' \ | |--' | | ' ,/ ' : `--' \
'---' ; : ;: , .-./ : \ \: , .-./ |/ ; : ;--' : , .-./
| , / `--`----' \ ' ; `--`----' '---' | ,/ `--`----'
---`-' `--` '---'

View File

@ -0,0 +1,20 @@
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.muyu</groupId>
<artifactId>ruoyi</artifactId>
<version>3.8.6</version>
</parent>
<artifactId>ruoyi-custom</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

View File

@ -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!");
}
}