pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.xuekairui</groupId>
  8. <artifactId>zhijiayun-pharmacy</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>zhijiayun-invite</artifactId>
  12. <version>1.0.0</version>
  13. <name>zhijiayun-invite</name>
  14. <description>智价云(药店版)-邀请码与邀请链接管理模块</description>
  15. <dependencies>
  16. <!-- 公共模块 -->
  17. <dependency>
  18. <groupId>com.xuekairui</groupId>
  19. <artifactId>zhijiayun-common</artifactId>
  20. </dependency>
  21. <!-- 用户模块(需要User实体、Mapper等) -->
  22. <dependency>
  23. <groupId>com.xuekairui</groupId>
  24. <artifactId>zhijiayun-user</artifactId>
  25. </dependency>
  26. <!-- Spring Boot -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-validation</artifactId>
  34. </dependency>
  35. <!-- MyBatis-Plus -->
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  39. </dependency>
  40. </dependencies>
  41. </project>