pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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</artifactId>
  27. <version>0.9.0</version>
  28. </dependency>
  29. </dependencies>
  30. </project>