This repository has been archived on 2026-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
el-retired/engram/receptors/kotlin/build.gradle.kts
T
Will Anderson 909c1577f1 rename crates/ to engrams/, bindings/ to receptors/
- crates/ → engrams/ (Rust engrams live here)
- bindings/ → receptors/ (cross-language access points into the graph)
- Cargo.toml workspace paths updated
2026-04-29 03:27:33 -05:00

34 lines
698 B
Kotlin

plugins {
kotlin("jvm") version "1.9.23"
}
group = "ai.neuron"
version = "0.1.0"
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib"))
// org.json is available on Android; for JVM use the standalone artifact.
implementation("org.json:json:20240303")
testImplementation(kotlin("test"))
testImplementation("org.junit.jupiter:junit-jupiter:5.10.0")
}
tasks.test {
useJUnitPlatform()
// Point to the compiled native library.
// Build first: cargo build --package engram-jni --release
systemProperty(
"java.library.path",
"${rootProject.projectDir}/../../target/release"
)
}
kotlin {
jvmToolchain(17)
}