pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>eladmin</artifactId>
  7. <groupId>me.zhengjie</groupId>
  8. <version>2.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>eladmin-security</artifactId>
  12. <name>权限模块</name>
  13. <properties>
  14. <jjwt.version>0.11.1</jjwt.version>
  15. <gson.version>2.9.0</gson.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>me.zhengjie</groupId>
  20. <artifactId>eladmin-common</artifactId>
  21. <version>2.6</version>
  22. </dependency>
  23. <!-- jwt -->
  24. <dependency>
  25. <groupId>io.jsonwebtoken</groupId>
  26. <artifactId>jjwt-api</artifactId>
  27. <version>${jjwt.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.jsonwebtoken</groupId>
  31. <artifactId>jjwt-impl</artifactId>
  32. <version>${jjwt.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.jsonwebtoken</groupId>
  36. <artifactId>jjwt-jackson</artifactId>
  37. <version>${jjwt.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.google.code.gson</groupId>
  41. <artifactId>gson</artifactId>
  42. <version>${gson.version}</version>
  43. </dependency>
  44. </dependencies>
  45. </project>