pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.0</version>
  10. </parent>
  11. <artifactId>zhijiayun-invite</artifactId>
  12. <name>zhijiayun-invite</name>
  13. <description>智价云(药店版)-邀请码与邀请链接管理模块</description>
  14. <dependencies>
  15. <!-- 公共模块 -->
  16. <dependency>
  17. <groupId>com.xuekairui</groupId>
  18. <artifactId>zhijiayun-common</artifactId>
  19. </dependency>
  20. <!-- 用户模块(需要User实体、Mapper等) -->
  21. <dependency>
  22. <groupId>com.xuekairui</groupId>
  23. <artifactId>zhijiayun-user</artifactId>
  24. </dependency>
  25. <!-- Spring Boot -->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-validation</artifactId>
  33. </dependency>
  34. <!-- MyBatis-Plus -->
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  38. </dependency>
  39. </dependencies>
  40. </project>