diff --git a/agileboot-common/pom.xml b/agileboot-common/pom.xml index bfe5c6c..2861725 100644 --- a/agileboot-common/pom.xml +++ b/agileboot-common/pom.xml @@ -13,6 +13,7 @@ wol-common-box wol-common-core wol-common-doc + wol-common-web wol-common-mybatis wol-common-redis wol-common-json diff --git a/agileboot-common/wol-common-box/pom.xml b/agileboot-common/wol-common-box/pom.xml index 9b7da86..c2ee8a1 100644 --- a/agileboot-common/wol-common-box/pom.xml +++ b/agileboot-common/wol-common-box/pom.xml @@ -37,6 +37,11 @@ wol-common-redis ${revision} + + com.agileboot + wol-common-web + ${revision} + com.agileboot wol-common-json diff --git a/agileboot-common/wol-common-web/pom.xml b/agileboot-common/wol-common-web/pom.xml index 42836d1..2bc0ad9 100644 --- a/agileboot-common/wol-common-web/pom.xml +++ b/agileboot-common/wol-common-web/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.agileboot - agileboot + agileboot-common 1.0.0 wol-common-web diff --git a/pom.xml b/pom.xml index 826fd59..c28f53f 100644 --- a/pom.xml +++ b/pom.xml @@ -19,6 +19,7 @@ agileboot-common wol-modules + wol-boot-start diff --git a/wol-boot-start/pom.xml b/wol-boot-start/pom.xml new file mode 100644 index 0000000..7802f43 --- /dev/null +++ b/wol-boot-start/pom.xml @@ -0,0 +1,19 @@ + + 4.0.0 + + com.agileboot + agileboot + 1.0.0 + + wol-boot-start + + + + com.agileboot + wol-common-web + ${revision} + + + + diff --git a/wol-boot-start/src/main/java/com/agileboot/WolBootApplication.java b/wol-boot-start/src/main/java/com/agileboot/WolBootApplication.java new file mode 100644 index 0000000..44a86f6 --- /dev/null +++ b/wol-boot-start/src/main/java/com/agileboot/WolBootApplication.java @@ -0,0 +1,11 @@ +package com.agileboot; + +import org.springframework.boot.autoconfigure.SpringBootApplication; + +/** + * @Author cuiJiaWang + * @Create 2025-08-12 18:07 + */ +@SpringBootApplication +public class WolBootApplication { +} diff --git a/wol-boot-start/src/main/resources/application.yml b/wol-boot-start/src/main/resources/application.yml new file mode 100644 index 0000000..e69de29