pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>0.4.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>0.36.0</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-boot</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. </project>