pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.taais</groupId>
  7. <artifactId>taais-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>taais-common-security</artifactId>
  13. <description>
  14. taais-common-security 安全模块
  15. </description>
  16. <dependencies>
  17. <!-- 通用模块-->
  18. <dependency>
  19. <groupId>com.taais</groupId>
  20. <artifactId>taais-common-core</artifactId>
  21. </dependency>
  22. <!-- Km Common Redis-->
  23. <dependency>
  24. <groupId>com.taais</groupId>
  25. <artifactId>taais-common-redis</artifactId>
  26. </dependency>
  27. <!-- Sa-Token 权限认证, 在线文档:https://sa-token.cc -->
  28. <dependency>
  29. <groupId>cn.dev33</groupId>
  30. <artifactId>sa-token-spring-boot3-starter</artifactId>
  31. </dependency>
  32. <!-- Sa-Token 整合 jwt -->
  33. <dependency>
  34. <groupId>cn.dev33</groupId>
  35. <artifactId>sa-token-jwt</artifactId>
  36. </dependency>
  37. </dependencies>
  38. </project>