pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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-security</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. <!--安全模块 -->
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-oauth2</artifactId>
  23. </dependency>
  24. <!--feign-->
  25. <dependency>
  26. <groupId>io.github.openfeign</groupId>
  27. <artifactId>feign-core</artifactId>
  28. </dependency>
  29. <!--aop-->
  30. <dependency>
  31. <groupId>org.aspectj</groupId>
  32. <artifactId>aspectjrt</artifactId>
  33. </dependency>
  34. </dependencies>
  35. </project>