pom.xml 994 B

12345678910111213141516171819202122232425262728293031323334
  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.dgtis</groupId>
  6. <artifactId>dgtis-common</artifactId>
  7. <version>2.2.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>dgtis-common-security</artifactId>
  11. <description>
  12. dgtis-common-security安全模块
  13. </description>
  14. <dependencies>
  15. <!-- dgtis Api System -->
  16. <dependency>
  17. <groupId>com.dgtis</groupId>
  18. <artifactId>dgtis-api-system</artifactId>
  19. </dependency>
  20. <!-- dgtis Common Redis-->
  21. <dependency>
  22. <groupId>com.dgtis</groupId>
  23. <artifactId>dgtis-common-redis</artifactId>
  24. </dependency>
  25. </dependencies>
  26. </project>