初始化项目

This commit is contained in:
2026-04-21 15:45:20 +08:00
parent 16d7cb6531
commit 0baba59d57
21 changed files with 1131 additions and 19 deletions

30
pom.xml Normal file
View File

@@ -0,0 +1,30 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>xtools-cloud</artifactId>
<packaging>pom</packaging>
<name>xtools-cloud</name>
<description>低调大师工具箱,SpringCloud工具模块,适配JDK25</description>
<!-- 父pom -->
<parent>
<groupId>org.xujun</groupId>
<artifactId>xtools-parent-cloud</artifactId>
<version>5.0.0</version>
<relativePath/>
</parent>
<!-- 子模块 -->
<modules>
<module>xtools-cloud-alibaba</module>
<module>xtools-cloud-call</module>
</modules>
<!-- 属性配置 -->
<properties>
<!-- JDK 版本号 -->
<java.version>25</java.version>
</properties>
</project>