pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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>xchat</artifactId>
  7. <groupId>com.juxiao.xchat</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>xchat-base</artifactId>
  12. <dependencies>
  13. <!-- https://mvnrepository.com/artifact/oro/oro -->
  14. <dependency>
  15. <groupId>oro</groupId>
  16. <artifactId>oro</artifactId>
  17. <version>2.0.8</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>commons-httpclient</groupId>
  21. <artifactId>commons-httpclient</artifactId>
  22. <version>3.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.jsonwebtoken</groupId>
  26. <artifactId>jjwt-api</artifactId>
  27. <version>0.10.5</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.jsonwebtoken</groupId>
  31. <artifactId>jjwt-impl</artifactId>
  32. <version>0.10.5</version>
  33. <scope>runtime</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.jsonwebtoken</groupId>
  37. <artifactId>jjwt-jackson</artifactId>
  38. <version>0.10.5</version>
  39. <scope>runtime</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.auth0</groupId>
  43. <artifactId>java-jwt</artifactId>
  44. <version>3.2.0</version>
  45. </dependency>
  46. </dependencies>
  47. </project>