This commit is contained in:
wol 2025-08-19 22:47:54 +08:00
parent bdd3f251a2
commit 0fa91a472d
6 changed files with 32 additions and 0 deletions

View File

@ -13,6 +13,7 @@
<module>wol-auth</module>
<module>agileboot-system-base</module>
<module>wol-gateway</module>
<module>wol-api</module>
</modules>
</project>

View File

@ -0,0 +1,22 @@
<?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.agileboot</groupId>
<artifactId>agileboot-system</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>wol-api</artifactId>
<dependencies>
<dependency>
<groupId>com.agileboot</groupId>
<artifactId>wol-common-core</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -28,6 +28,10 @@
<groupId>com.agileboot</groupId>
<artifactId>wol-common-redis</artifactId>
</dependency>
<dependency>
<groupId>com.agileboot</groupId>
<artifactId>wol-api</artifactId>
</dependency>
</dependencies>
<build>

View File

@ -77,6 +77,11 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.agileboot</groupId>
<artifactId>wol-api</artifactId>
<version>1.0.0</version>
</dependency>
<!-- &lt;!&ndash; 阿里数据库连接池 &ndash;&gt;-->
<!-- <dependency>-->