-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpom.xml
More file actions
87 lines (75 loc) · 2.68 KB
/
pom.xml
File metadata and controls
87 lines (75 loc) · 2.68 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-examples</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>langgraph4j::examples</name>
<url>https://github.com/langgraph4j/langgraph4j-examples</url>
<description>Langgraph4j examples</description>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/license/mit</url>
</license>
</licenses>
<developers>
<developer>
<id>bsorrentino</id>
<name>Bartolomeo Sorrentino</name>
<email>bartolomeo.sorrentino@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git: https://github.com/langgraph4j/langgraph4j-examples.git </connection>
<developerConnection>scm:git: https://github.com/langgraph4j/langgraph4j-examples.git </developerConnection>
<url> https://github.com/langgraph4j/langgraph4j-examples</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>github</system>
<url> https://github.com/langgraph4j/langgraph4j-examples/issues</url>
</issueManagement>
<properties>
<langgraph4j.version>1.8-SNAPSHOT</langgraph4j.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>2.0.9</version> <!-- Use the latest version -->
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
</build>
<modules>
<module><![CDATA[reference/agent-q&a]]></module>
<module>reference/subgraph-interruption</module>
<module>langchain4j/agents-handoff</module>
<module>langchain4j/image-to-diagram</module>
<module>langchain4j/adaptive-rag</module>
<module>langchain4j/MapifyAI</module>
<module>langchain4j/mcp-client-agent</module>
<module>langchain4j/aiservices</module>
<!-- LangGraph4j with Spring AI examples -->
<module>spring-ai/a2a-server-implby-a2a4j</module>
<module>spring-ai/agents-handoff</module>
<module>spring-ai/memory-agent</module>
<module>spring-ai/mcp-client-agent</module>
</modules>
</project>