pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <parent>
  5. <groupId>easydo.technology</groupId>
  6. <artifactId>easydo</artifactId>
  7. <version>v20220507</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>easydo-system</artifactId>
  11. <name>用户系统</name>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <jjwt.version>0.11.1</jjwt.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>easydo.technology</groupId>
  19. <artifactId>easydo-core</artifactId>
  20. <version>v1.0</version>
  21. </dependency>
  22. <!-- jwt -->
  23. <dependency>
  24. <groupId>io.jsonwebtoken</groupId>
  25. <artifactId>jjwt-api</artifactId>
  26. <version>${jjwt.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.jsonwebtoken</groupId>
  30. <artifactId>jjwt-impl</artifactId>
  31. <version>${jjwt.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.jsonwebtoken</groupId>
  35. <artifactId>jjwt-jackson</artifactId>
  36. <version>${jjwt.version}</version>
  37. </dependency>
  38. </dependencies>
  39. </project>