pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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</revision>
  34. <hutool.version>5.8.26</hutool.version>
  35. <mybatis-plus.version>3.5.5</mybatis-plus.version>
  36. <druid.version>1.2.21</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>0.34.0</langchain4j.version>
  41. <sa-token.version>1.37.0</sa-token.version>
  42. </properties>
  43. <modules>
  44. <module>langchat-app</module>
  45. <module>langchat-common</module>
  46. <module>langchat-core</module>
  47. <module>langchat-client</module>
  48. <module>langchat-biz</module>
  49. <module>langchat-server</module>
  50. <module>langchat-upms</module>
  51. <module>langchat-auth</module>
  52. </modules>
  53. <dependencyManagement>
  54. <dependencies>
  55. <!-- Modules version -->
  56. <dependency>
  57. <groupId>cn.tycoding</groupId>
  58. <artifactId>langchat-common</artifactId>
  59. <version>${revision}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.tycoding</groupId>
  63. <artifactId>langchat-app</artifactId>
  64. <version>${revision}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>cn.tycoding</groupId>
  68. <artifactId>langchat-core</artifactId>
  69. <version>${revision}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>cn.tycoding</groupId>
  73. <artifactId>langchat-biz</artifactId>
  74. <version>${revision}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.tycoding</groupId>
  78. <artifactId>langchat-client</artifactId>
  79. <version>${revision}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>cn.tycoding</groupId>
  83. <artifactId>langchat-upms</artifactId>
  84. <version>${revision}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>cn.tycoding</groupId>
  88. <artifactId>langchat-server</artifactId>
  89. <version>${revision}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>cn.tycoding</groupId>
  93. <artifactId>langchat-auth</artifactId>
  94. <version>${revision}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.yaml</groupId>
  98. <artifactId>snakeyaml</artifactId>
  99. <version>${snakeyaml.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.mysql</groupId>
  103. <artifactId>mysql-connector-j</artifactId>
  104. <version>${mysql-connector.version}</version>
  105. </dependency>
  106. </dependencies>
  107. </dependencyManagement>
  108. </project>