pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.webchat</groupId>
  8. <artifactId>webchat</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <groupId>com.webchat</groupId>
  12. <artifactId>webchat-common</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <properties>
  16. <maven.compiler.source>17</maven.compiler.source>
  17. <maven.compiler.target>17</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>io.minio</groupId>
  23. <artifactId>minio</artifactId>
  24. <version>8.4.2</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.webchat</groupId>
  28. <artifactId>webchat-domain</artifactId>
  29. <version>1.0-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>redis.clients</groupId>
  33. <artifactId>jedis</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-redis</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.rocketmq</groupId>
  41. <artifactId>rocketmq-spring-boot-starter</artifactId>
  42. <version>2.3.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-freemarker</artifactId>
  47. </dependency>
  48. <!-- 添加依赖 -->
  49. <dependency>
  50. <groupId>com.squareup.okhttp3</groupId>
  51. <artifactId>okhttp</artifactId>
  52. <version>4.12.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>slf4j-simple</artifactId>
  57. <version>2.0.12</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.reactivex.rxjava2</groupId>
  62. <artifactId>rxjava</artifactId>
  63. <version>2.2.21</version>
  64. </dependency>
  65. <!-- 二维码 -->
  66. <dependency>
  67. <groupId>com.google.zxing</groupId>
  68. <artifactId>core</artifactId>
  69. <version>3.1.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.google.zxing</groupId>
  73. <artifactId>javase</artifactId>
  74. <version>3.1.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.httpcomponents.client5</groupId>
  78. <artifactId>httpclient5</artifactId>
  79. <version>5.2.1</version>
  80. </dependency>
  81. <!-- 用于html转图片 -->
  82. <dependency>
  83. <groupId>org.xhtmlrenderer</groupId>
  84. <artifactId>core-renderer</artifactId>
  85. <version>R8</version>
  86. </dependency>
  87. </dependencies>
  88. </project>