pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.fs4a.commons</groupId>
  6. <artifactId>fs4a-commons</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <artifactId>common-jwt</artifactId>
  10. <groupId>com.fs4a.commons.jwt</groupId>
  11. <version>${fs4a.version}</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.jsonwebtoken</groupId>
  15. <artifactId>jjwt</artifactId>
  16. <version>0.9.1</version>
  17. </dependency>
  18. <!-- <dependency>-->
  19. <!-- <artifactId>common-basic</artifactId>-->
  20. <!-- <groupId>com.server.common.basic</groupId>-->
  21. <!-- <version>${server.common.version}</version>-->
  22. <!-- <scope>compile</scope>-->
  23. <!-- </dependency>-->
  24. <dependency>
  25. <groupId>com.fs4a.commons.basic</groupId>
  26. <artifactId>common-basic</artifactId>
  27. <version>1.0.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-autoconfigure</artifactId>
  32. <version>${spring-boot.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-configuration-processor</artifactId>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. <version>${hutool-all.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>junit</groupId>
  51. <artifactId>junit</artifactId>
  52. <version>4.11</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.bouncycastle</groupId>
  57. <artifactId>bcprov-jdk15on</artifactId>
  58. <version>1.68</version>
  59. </dependency>
  60. </dependencies>
  61. </project>