File tree 8 files changed +6
-5
lines changed
8 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 8
8
<relativePath >../../pom.xml</relativePath >
9
9
</parent >
10
10
11
- <artifactId >langchain4j-community-neo4j</artifactId >
11
+ <artifactId >langchain4j-community-neo4j-retriever </artifactId >
12
12
<packaging >jar</packaging >
13
13
<name >LangChain4j :: Community :: Content Retriever :: Neo4j</name >
14
14
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 27
27
28
28
@ ExtendWith (MockitoExtension .class )
29
29
class Neo4jContentRetrieverIT {
30
-
30
+ private static final String NEO4J_VERSION = System .getProperty ("neo4jVersion" , "5.26" );
31
+
31
32
@ Container
32
33
private static final Neo4jContainer <?> neo4jContainer =
33
- new Neo4jContainer <>("neo4j:latest" ).withoutAuthentication ().withPlugins ("apoc" );
34
+ new Neo4jContainer <>("neo4j:" + NEO4J_VERSION ).withoutAuthentication ().withPlugins ("apoc" );
34
35
35
36
private Driver driver ;
36
37
private Neo4jGraph graph ;
Original file line number Diff line number Diff line change 87
87
</dependency >
88
88
<dependency >
89
89
<groupId >dev.langchain4j</groupId >
90
- <artifactId >langchain4j-community-neo4j</artifactId >
90
+ <artifactId >langchain4j-community-neo4j-retriever </artifactId >
91
91
<version >${project.version} </version >
92
92
</dependency >
93
93
Original file line number Diff line number Diff line change 64
64
65
65
<!-- Integration of content retrievers -->
66
66
<module >content-retrievers/langchain4j-community-lucene</module >
67
- <module >content-retrievers/langchain4j-community-neo4j</module >
67
+ <module >content-retrievers/langchain4j-community-neo4j-retriever </module >
68
68
69
69
<!-- Integration of web search engine -->
70
70
<module >web-search-engines/langchain4j-community-web-search-engine-searxng</module >
You can’t perform that action at this time.
0 commit comments