Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4d2a7b4

Browse files
committedMar 21, 2025·
changed module name
1 parent ff8e656 commit 4d2a7b4

File tree

8 files changed

+6
-5
lines changed

8 files changed

+6
-5
lines changed
 

‎content-retrievers/langchain4j-community-neo4j/pom.xml ‎content-retrievers/langchain4j-community-neo4j-retriever/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
1010

11-
<artifactId>langchain4j-community-neo4j</artifactId>
11+
<artifactId>langchain4j-community-neo4j-retriever</artifactId>
1212
<packaging>jar</packaging>
1313
<name>LangChain4j :: Community :: Content Retriever :: Neo4j</name>
1414

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@
2727

2828
@ExtendWith(MockitoExtension.class)
2929
class Neo4jContentRetrieverIT {
30-
30+
private static final String NEO4J_VERSION = System.getProperty("neo4jVersion", "5.26");
31+
3132
@Container
3233
private static final Neo4jContainer<?> neo4jContainer =
33-
new Neo4jContainer<>("neo4j:latest").withoutAuthentication().withPlugins("apoc");
34+
new Neo4jContainer<>("neo4j:" + NEO4J_VERSION).withoutAuthentication().withPlugins("apoc");
3435

3536
private Driver driver;
3637
private Neo4jGraph graph;

‎langchain4j-community-bom/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
</dependency>
8888
<dependency>
8989
<groupId>dev.langchain4j</groupId>
90-
<artifactId>langchain4j-community-neo4j</artifactId>
90+
<artifactId>langchain4j-community-neo4j-retriever</artifactId>
9191
<version>${project.version}</version>
9292
</dependency>
9393

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
<!-- Integration of content retrievers -->
6666
<module>content-retrievers/langchain4j-community-lucene</module>
67-
<module>content-retrievers/langchain4j-community-neo4j</module>
67+
<module>content-retrievers/langchain4j-community-neo4j-retriever</module>
6868

6969
<!-- Integration of web search engine -->
7070
<module>web-search-engines/langchain4j-community-web-search-engine-searxng</module>

0 commit comments

Comments
 (0)
Please sign in to comment.