langgraph4j-postgres-saver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.bsc.langgraph4j</groupId> <artifactId>langgraph4j-postgres-saver</artifactId> <version>1.6.0-rc1</version> </dependency>
<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> <parent> <groupId>org.bsc.langgraph4j</groupId> <artifactId>langgraph4j-parent</artifactId> <version>1.6.0-rc1</version> </parent> <artifactId>langgraph4j-postgres-saver</artifactId> <packaging>jar</packaging> <name>langgraph4j::postgres-saver</name> <url>https://github.com/langgraph4j/langgraph4j</url> <scm> <connection>scm:git: https://github.com/langgraph4j/langgraph4j.git</connection> <developerConnection>scm:git: https://github.com/langgraph4j/langgraph4j.git</developerConnection> <url>https://github.com/langgraph4j/langgraph4j</url> <tag>HEAD</tag> </scm> <properties> </properties> <dependencies> <dependency> <groupId>${parent.groupId}</groupId> <artifactId>langgraph4j-core</artifactId> <version>${parent.version}</version> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>42.7.7</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*ITest.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>