pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2024 LangChat. TyCoding All Rights Reserved.
  4. ~
  5. ~ Licensed under the GNU Affero General Public License, Version 3 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ https://www.gnu.org/licenses/agpl-3.0.html
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  18. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>cn.tycoding</groupId>
  22. <artifactId>langchat</artifactId>
  23. <version>${revision}</version>
  24. <relativePath>../pom.xml</relativePath>
  25. </parent>
  26. <artifactId>langchat-common</artifactId>
  27. <version>${revision}</version>
  28. <dependencies>
  29. <!-- Spring -->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-data-redis</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-cache</artifactId>
  37. </dependency>
  38. <!-- Mybatis-Plus -->
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  42. <version>${mybatis-plus.version}</version>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>com.zaxxer</groupId>
  46. <artifactId>HikariCP</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <!-- Druid -->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid-spring-boot-starter</artifactId>
  54. <version>${druid.version}</version>
  55. </dependency>
  56. <!-- Security -->
  57. <dependency>
  58. <groupId>cn.dev33</groupId>
  59. <artifactId>sa-token-spring-boot3-starter</artifactId>
  60. <version>${sa-token.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-aop</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.aspectj</groupId>
  68. <artifactId>aspectjweaver</artifactId>
  69. </dependency>
  70. <!-- Langchain4j -->
  71. <dependency>
  72. <groupId>dev.langchain4j</groupId>
  73. <artifactId>langchain4j</artifactId>
  74. <version>${langchain4j.version}</version>
  75. </dependency>
  76. <!-- OSS -->
  77. <dependency>
  78. <groupId>org.dromara.x-file-storage</groupId>
  79. <artifactId>x-file-storage-core</artifactId>
  80. <version>2.2.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.qiniu</groupId>
  84. <artifactId>qiniu-java-sdk</artifactId>
  85. <version>7.12.1</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.aliyun.oss</groupId>
  89. <artifactId>aliyun-sdk-oss</artifactId>
  90. <version>3.16.1</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.qcloud</groupId>
  94. <artifactId>cos_api</artifactId>
  95. <version>5.6.137</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.projectlombok</groupId>
  99. <artifactId>lombok</artifactId>
  100. <scope>compile</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>fastjson</artifactId>
  105. <version>${fastjson.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>cn.hutool</groupId>
  109. <artifactId>hutool-all</artifactId>
  110. <version>${hutool.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.commons</groupId>
  114. <artifactId>commons-lang3</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework</groupId>
  118. <artifactId>spring-webmvc</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-configuration-processor</artifactId>
  123. <scope>provided</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>ch.qos.logback</groupId>
  127. <artifactId>logback-classic</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>junit</groupId>
  131. <artifactId>junit</artifactId>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-starter-test</artifactId>
  136. </dependency>
  137. </dependencies>
  138. </project>