pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.qunzhixinxi</groupId>
  7. <artifactId>hnqz-common</artifactId>
  8. <version>3.9.0</version>
  9. </parent>
  10. <artifactId>hnqz-common-data</artifactId>
  11. <packaging>jar</packaging>
  12. <description>hnqz 数据操作相关</description>
  13. <dependencies>
  14. <!--工具类核心包-->
  15. <dependency>
  16. <groupId>com.qunzhixinxi</groupId>
  17. <artifactId>hnqz-common-core</artifactId>
  18. </dependency>
  19. <!--mybatis plus extension,包含了mybatis plus core-->
  20. <dependency>
  21. <groupId>com.baomidou</groupId>
  22. <artifactId>mybatis-plus-extension</artifactId>
  23. </dependency>
  24. <!--安全依赖获取上下文信息-->
  25. <dependency>
  26. <groupId>com.qunzhixinxi</groupId>
  27. <artifactId>hnqz-common-security</artifactId>
  28. </dependency>
  29. <!--feign client-->
  30. <dependency>
  31. <groupId>com.qunzhixinxi</groupId>
  32. <artifactId>hnqz-upms-api</artifactId>
  33. </dependency>
  34. <!--缓存依赖-->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-redis</artifactId>
  38. </dependency>
  39. </dependencies>
  40. </project>