-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
60 lines (49 loc) · 1.61 KB
/
Copy pathpom.xml
File metadata and controls
60 lines (49 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.llm4j</groupId>
<artifactId>llm4j-bom</artifactId>
<packaging>pom</packaging>
<version>0.2-SNAPSHOT</version>
<name>LLM4J BOM</name>
<description>LLM4J project BOM</description>
<modules>
<module>parent-pom.xml</module>
<module>llm4j-api</module>
<module>llm4j-cohere</module>
<module>llm4j-examples</module>
<module>llm4j-huggingface</module>
<module>llm4j-palm</module>
<module>llm4j-openai</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.llm4j</groupId>
<artifactId>llm4j-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.llm4j</groupId>
<artifactId>llm4j-cohere</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.llm4j</groupId>
<artifactId>llm4j-huggingface</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.llm4j</groupId>
<artifactId>llm4j-palm</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.llm4j</groupId>
<artifactId>llm4j-openai</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>