diff --git a/pom.xml b/pom.xml index 48ef2ef..9eea497 100644 --- a/pom.xml +++ b/pom.xml @@ -235,6 +235,7 @@ ruoyi-quartz ruoyi-generator ruoyi-common + ruoyi-mall pom diff --git a/ruoyi-admin/pom.xml b/ruoyi-admin/pom.xml index d3194e5..49f09fb 100644 --- a/ruoyi-admin/pom.xml +++ b/ruoyi-admin/pom.xml @@ -64,6 +64,11 @@ ${ruoyi.version} + + com.ruoyi + ruoyi-mall + ${ruoyi.version} + org.junit.vintage junit-vintage-engine diff --git a/ruoyi-mall/pom.xml b/ruoyi-mall/pom.xml new file mode 100644 index 0000000..4d20b28 --- /dev/null +++ b/ruoyi-mall/pom.xml @@ -0,0 +1,76 @@ + + + 4.0.0 + + ruoyi + com.ruoyi + 3.7.0 + + ruoyi-mall + + 8 + 8 + + + + com.ruoyi + ruoyi-common + ${ruoyi.version} + + + com.baomidou + mybatis-plus-boot-starter + ${mybatis.plus.version} + + + org.mapstruct + mapstruct + + + org.springframework.boot + spring-boot-starter + test + + + org.springframework.boot + spring-boot-starter-test + test + + + com.h2database + h2 + test + + + org.springframework.boot + spring-boot-test + test + + + junit + junit + test + + + org.springframework + spring-test + test + + + io.springfox + springfox-boot-starter + ${swagger.version} + + + io.swagger + swagger-models + + + org.mapstruct + mapstruct + + + + + diff --git a/ruoyi-mall/src/test/java/com/example/ruoyimall/RuoyiMallApplicationTests.java b/ruoyi-mall/src/test/java/com/example/ruoyimall/RuoyiMallApplicationTests.java new file mode 100644 index 0000000..5c1e9e3 --- /dev/null +++ b/ruoyi-mall/src/test/java/com/example/ruoyimall/RuoyiMallApplicationTests.java @@ -0,0 +1,13 @@ +package com.example.ruoyimall; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class RuoyiMallApplicationTests { + + @Test + void contextLoads() { + } + +}