pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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"
  18. xmlns="http://maven.apache.org/POM/4.0.0"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-parent</artifactId>
  24. <version>3.2.3</version>
  25. </parent>
  26. <groupId>cn.tycoding</groupId>
  27. <artifactId>langchat</artifactId>
  28. <version>${revision}</version>
  29. <packaging>pom</packaging>
  30. <name>${project.artifactId}</name>
  31. <properties>
  32. <java.version>17</java.version>
  33. <revision>1.0.0</revision>
  34. <hutool.version>5.8.26</hutool.version>
  35. <mybatis-plus.version>3.5.5</mybatis-plus.version>
  36. <druid.version>1.2.23</druid.version>
  37. <mysql-connector.version>8.3.0</mysql-connector.version>
  38. <fastjson.version>2.0.47</fastjson.version>
  39. <snakeyaml.version>2.1</snakeyaml.version>
  40. <langchain4j.version>1.0.0-beta1</langchain4j.version>
  41. <sa-token.version>1.37.0</sa-token.version>
  42. </properties>
  43. <modules>
  44. <module>langchat-ai</module>
  45. <module>langchat-common</module>
  46. <module>langchat-server</module>
  47. <module>langchat-upms</module>
  48. <module>langchat-auth</module>
  49. </modules>
  50. <dependencyManagement>
  51. <dependencies>
  52. <dependency>
  53. <groupId>cn.tycoding</groupId>
  54. <artifactId>langchat-common-bom</artifactId>
  55. <version>${revision}</version>
  56. <type>pom</type>
  57. <scope>import</scope>
  58. </dependency>
  59. </dependencies>
  60. </dependencyManagement>
  61. <!-- 依赖仓库配置 -->
  62. <repositories>
  63. <repository>
  64. <id>huawei-mirror</id>
  65. <name>HuaweiCloud Mirror</name>
  66. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  67. </repository>
  68. <repository>
  69. <id>ali-mirror</id>
  70. <name>AliYun Mirror</name>
  71. <url>https://maven.aliyun.com/repository/public/</url>
  72. </repository>
  73. </repositories>
  74. <!-- 插件仓库配置 -->
  75. <pluginRepositories>
  76. <pluginRepository>
  77. <id>huawei-mirror</id>
  78. <name>HuaweiCloud Mirror</name>
  79. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  80. </pluginRepository>
  81. <pluginRepository>
  82. <id>ali-mirror</id>
  83. <name>AliYun Mirror</name>
  84. <url>https://maven.aliyun.com/repository/public/</url>
  85. </pluginRepository>
  86. </pluginRepositories>
  87. </project>