pom.xml 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.zd</groupId>
  6. <artifactId>zd-common</artifactId>
  7. <version>3.1.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>zd-common-security</artifactId>
  11. <packaging>jar</packaging>
  12. <description>安全模块</description>
  13. <dependencies>
  14. <!-- zd Api System -->
  15. <dependency>
  16. <groupId>com.zd</groupId>
  17. <artifactId>zd-api-system</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.zd</groupId>
  21. <artifactId>zd-common-datasource</artifactId>
  22. </dependency>
  23. <!-- zd Common Redis-->
  24. <dependency>
  25. <groupId>com.zd</groupId>
  26. <artifactId>zd-common-redis</artifactId>
  27. </dependency>
  28. </dependencies>
  29. </project>