java langgraph-checkpoint

This commit is contained in:
Nuno Campos
2025-03-01 18:51:45 -08:00
parent c4275bdc32
commit 196bcfe08d
24 changed files with 2321 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
plugins {
id 'java-library'
}
allprojects {
group = 'com.langgraph'
version = '0.1.0-SNAPSHOT'
repositories {
mavenCentral()
}
}
subprojects {
apply plugin: 'java-library'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.compilerArgs << '-parameters'
}
dependencies {
// Testing dependencies
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
testImplementation 'org.mockito:mockito-core:5.2.0'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
test {
useJUnitPlatform()
}
}