pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.sf</groupId>
  7. <artifactId>novel-user</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>novel-user-service</artifactId>
  11. <name>novel-user-service</name>
  12. <description>novel-user-service</description>
  13. <properties>
  14. <jjwt.version>0.11.5</jjwt.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.sf</groupId>
  19. <artifactId>novel-core</artifactId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <!-- 使用hutool 生成验证码图片 -->
  23. <dependency>
  24. <groupId>cn.hutool</groupId>
  25. <artifactId>hutool-all</artifactId>
  26. <version>5.8.27</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.data</groupId>
  30. <artifactId>spring-data-commons</artifactId>
  31. <version>3.3.0</version>
  32. </dependency>
  33. <!-- 使用jwt来做用户登录信息加密和校验 -->
  34. <dependency>
  35. <groupId>io.jsonwebtoken</groupId>
  36. <artifactId>jjwt-api</artifactId>
  37. <version>${jjwt.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.jsonwebtoken</groupId>
  41. <artifactId>jjwt-impl</artifactId>
  42. <version>${jjwt.version}</version>
  43. <scope>runtime</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.jsonwebtoken</groupId>
  47. <artifactId>jjwt-jackson</artifactId>
  48. <version>${jjwt.version}</version>
  49. <scope>runtime</scope>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>