Merge branch 'dev-cloud-v3.5.4' into dev-boot-v3.5.4

# Conflicts:
#	pom.xml
This commit is contained in:
wol 2025-08-12 23:33:57 +08:00
commit 8a73e9bec4
6 changed files with 47 additions and 5 deletions

View File

@ -15,14 +15,11 @@
<description>基于 springboot的快速开发系统</description>
<modules>
<!-- <module>agileboot-admin</module>-->
<!-- <module>agileboot-api</module>-->
<module>wol-auth</module>
<module>agileboot-common</module>
<module>wol-auth</module>
<module>wol-modules</module>
<module>wol-boot-start</module>
<!-- <module>agileboot-domain</module>-->
<!-- <module>agileboot-infrastructure</module>-->
<module>wol-server-cloud</module>
</modules>
<packaging>pom</packaging>

15
wol-server-cloud/pom.xml Normal file
View File

@ -0,0 +1,15 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.agileboot</groupId>
<artifactId>agileboot</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>wol-server-cloud</artifactId>
<packaging>pom</packaging>
<modules>
<module>wol-cloud-start</module>
</modules>
</project>

View File

@ -0,0 +1,18 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.agileboot</groupId>
<artifactId>wol-server-cloud</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>wol-cloud-start</artifactId>
<dependencies>
<dependency>
<groupId>com.agileboot</groupId>
<artifactId>wol-common-web</artifactId>
<version>${revision}</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,11 @@
package com.agileboot;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* @Author cuiJiaWang
* @Create 2025-08-12 17:35
*/
@SpringBootApplication
public class WolCloudApplication {
}