pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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>0.4.0</revision>
  26. </properties>
  27. <dependencyManagement>
  28. <dependencies>
  29. <!-- Modules version -->
  30. <dependency>
  31. <groupId>cn.tycoding</groupId>
  32. <artifactId>langchat-ai-core</artifactId>
  33. <version>${revision}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.tycoding</groupId>
  37. <artifactId>langchat-ai-biz</artifactId>
  38. <version>${revision}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.tycoding</groupId>
  42. <artifactId>langchat-upms-api</artifactId>
  43. <version>${revision}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.tycoding</groupId>
  47. <artifactId>langchat-upms-biz</artifactId>
  48. <version>${revision}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.tycoding</groupId>
  52. <artifactId>langchat-common</artifactId>
  53. <version>${revision}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.tycoding</groupId>
  57. <artifactId>langchat-common-bom</artifactId>
  58. <version>${revision}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>cn.tycoding</groupId>
  62. <artifactId>langchat-common-core</artifactId>
  63. <version>${revision}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>cn.tycoding</groupId>
  67. <artifactId>langchat-common-auth</artifactId>
  68. <version>${revision}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.tycoding</groupId>
  72. <artifactId>langchat-common-ai</artifactId>
  73. <version>${revision}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>cn.tycoding</groupId>
  77. <artifactId>langchat-common-oss</artifactId>
  78. <version>${revision}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>cn.tycoding</groupId>
  82. <artifactId>langchat-server</artifactId>
  83. <version>${revision}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>cn.tycoding</groupId>
  87. <artifactId>langchat-auth</artifactId>
  88. <version>${revision}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>cn.tycoding</groupId>
  92. <artifactId>langchat-flow</artifactId>
  93. <version>${revision}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>cn.tycoding</groupId>
  97. <artifactId>langchat-flow-api</artifactId>
  98. <version>${revision}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>cn.tycoding</groupId>
  102. <artifactId>langchat-flow-parser</artifactId>
  103. <version>${revision}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.yaml</groupId>
  107. <artifactId>snakeyaml</artifactId>
  108. <version>${snakeyaml.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.mysql</groupId>
  112. <artifactId>mysql-connector-j</artifactId>
  113. <version>${mysql-connector.version}</version>
  114. </dependency>
  115. </dependencies>
  116. </dependencyManagement>
  117. </project>