pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. <groupId>cn.tycoding</groupId>
  21. <artifactId>langchat-common-bom</artifactId>
  22. <version>${revision}</version>
  23. <packaging>pom</packaging>
  24. <properties>
  25. <revision>1.0.0</revision>
  26. </properties>
  27. <dependencyManagement>
  28. <dependencies>
  29. <!-- AI模块 -->
  30. <dependency>
  31. <groupId>cn.tycoding</groupId>
  32. <artifactId>langchat-ai</artifactId>
  33. <version>${revision}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.tycoding</groupId>
  37. <artifactId>langchat-ai-core</artifactId>
  38. <version>${revision}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.tycoding</groupId>
  42. <artifactId>langchat-ai-biz</artifactId>
  43. <version>${revision}</version>
  44. </dependency>
  45. <!-- Upms模块 -->
  46. <dependency>
  47. <groupId>cn.tycoding</groupId>
  48. <artifactId>langchat-upms-api</artifactId>
  49. <version>${revision}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.tycoding</groupId>
  53. <artifactId>langchat-upms-biz</artifactId>
  54. <version>${revision}</version>
  55. </dependency>
  56. <!-- 公共模块 -->
  57. <dependency>
  58. <groupId>cn.langchat</groupId>
  59. <artifactId>langchat-common</artifactId>
  60. <version>${revision}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>cn.langchat</groupId>
  64. <artifactId>langchat-common-bom</artifactId>
  65. <version>${revision}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>cn.tycoding</groupId>
  69. <artifactId>langchat-common-core</artifactId>
  70. <version>${revision}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>cn.tycoding</groupId>
  74. <artifactId>langchat-common-auth</artifactId>
  75. <version>${revision}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>cn.tycoding</groupId>
  79. <artifactId>langchat-common-ai</artifactId>
  80. <version>${revision}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>cn.tycoding</groupId>
  84. <artifactId>langchat-common-oss</artifactId>
  85. <version>${revision}</version>
  86. </dependency>
  87. <!-- 认证模块 -->
  88. <dependency>
  89. <groupId>cn.tycoding</groupId>
  90. <artifactId>langchat-auth</artifactId>
  91. <version>${revision}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.yaml</groupId>
  95. <artifactId>snakeyaml</artifactId>
  96. <version>${snakeyaml.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.mysql</groupId>
  100. <artifactId>mysql-connector-j</artifactId>
  101. <version>${mysql-connector.version}</version>
  102. </dependency>
  103. </dependencies>
  104. </dependencyManagement>
  105. </project>