pom.xml 989 B

1234567891011121314151617181920212223242526272829303132
  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.nexo</groupId>
  6. <artifactId>nexo-common</artifactId>
  7. <version>1.8.2</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>nexo-common-security</artifactId>
  11. <description>
  12. nexo-common-security安全模块
  13. </description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.nexo</groupId>
  17. <artifactId>nexo-common-satoken</artifactId>
  18. </dependency>
  19. <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
  20. <dependency>
  21. <groupId>cn.dev33</groupId>
  22. <artifactId>sa-token-spring-boot-starter</artifactId>
  23. </dependency>
  24. </dependencies>
  25. </project>