Skip to content

Commit

Permalink
refactor(core): rename langgraph4j-core-jdk8 to langgraph4j-core
Browse files Browse the repository at this point in the history
work on #54
  • Loading branch information
bsorrentino committed Dec 29, 2024
1 parent c7b7fc1 commit db3b522
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion agent-executor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<dependency>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-core-jdk8</artifactId>
<artifactId>langgraph4j-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions core-jdk8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<version>1.2.0-SNAPSHOT</version>
</parent>

<artifactId>langgraph4j-core-jdk8</artifactId>
<artifactId>langgraph4j-core</artifactId>
<packaging>jar</packaging>
<name>langgraph4j::core::jdk8</name>
<name>langgraph4j::core</name>
<description>A library for building stateful, multi-agents applications with LLMs</description>


Expand Down
2 changes: 1 addition & 1 deletion langchain4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<dependency>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-core-jdk8</artifactId>
<artifactId>langgraph4j-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@
<jdk>1.8</jdk>
</activation>
<modules>
<module>core-jdk8</module>
</modules>
<build>

Expand All @@ -192,6 +191,7 @@
<jdk>[17,)</jdk>
</activation>
<modules>
<module>core-jdk8</module>
<module>langchain4j</module>
<module>agent-executor</module>
<module>studio</module>
Expand Down
2 changes: 1 addition & 1 deletion samples/adaptive-rag/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<dependency>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-core-jdk8</artifactId>
<artifactId>langgraph4j-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion samples/image-to-diagram/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<dependency>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-core-jdk8</artifactId>
<artifactId>langgraph4j-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion samples/springai-agentexecutor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<dependency>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-core-jdk8</artifactId>
<artifactId>langgraph4j-core</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</head>

<menu name="Modules">
<item name="Core module" href="core-jdk8/langgraph4j-core-jdk8/index.html"/>
<item name="Core module" href="core-jdk8/langgraph4j-core/index.html"/>
<item name="Langchain4j integration module" href="langchain4j/langgraph4j-langchain4j/index.html"/>
<item name="Agent Executor" href="agent-executor/langgraph4j-agent-executor/index.html"/>
<item name="Studio (jetty implementation)" href="studio/langgraph4j-studio/index.html"/>
Expand Down
4 changes: 2 additions & 2 deletions studio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-core-jdk8</artifactId>
<artifactId>langgraph4j-core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
Expand Down Expand Up @@ -175,7 +175,7 @@
<dependencies>
<dependency>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-core-jdk8</artifactId>
<artifactId>langgraph4j-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down

0 comments on commit db3b522

Please sign in to comment.