pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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>jutil</artifactId>
  7. <groupId>cn.reghao.jutil</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>auth</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <properties>
  14. <maven.compiler.source>11</maven.compiler.source>
  15. <maven.compiler.target>11</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <!-- jwt 认证依赖 -->
  19. <dependency>
  20. <groupId>io.jsonwebtoken</groupId>
  21. <artifactId>jjwt-api</artifactId>
  22. <version>0.12.6</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.jsonwebtoken</groupId>
  26. <artifactId>jjwt-impl</artifactId>
  27. <version>0.12.6</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.jsonwebtoken</groupId>
  31. <artifactId>jjwt-gson</artifactId>
  32. <version>0.12.6</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>javax.xml.bind</groupId>
  36. <artifactId>jaxb-api</artifactId>
  37. <version>2.3.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.sun.xml.bind</groupId>
  41. <artifactId>jaxb-impl</artifactId>
  42. <version>2.3.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.sun.xml.bind</groupId>
  46. <artifactId>jaxb-core</artifactId>
  47. <version>2.3.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.activation</groupId>
  51. <artifactId>activation</artifactId>
  52. <version>1.1.1</version>
  53. </dependency>
  54. </dependencies>
  55. </project>