Skip to content

Commit 1253b42

Browse files
michalharakalclaude
andcommitted
Add skainet-backend-api to BOM (#400)
The neutral backend api module landed in #470 as the integration seam for future backends (IREE, Metal, NPU, the NNAPI-Amlogic sibling repo) but it was never added to the BOM's version- alignment constraints. Java / JVM consumers that depend on the BOM were therefore not getting a pinned version for skainet-backend-api, so anyone referencing the module from a Maven / Gradle project had to either spell out the version manually or drop the BOM reliance for that coordinate. Adding the missing `api(project(":skainet-backends:skainet-backend-api"))` constraint groups it with skainet-backend-cpu under the backend section. BOM still builds clean. First of five commits polishing the Java / JVM consumption story for the upcoming 0.19.0 release. See #400. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a99990e commit 1253b42

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

skainet-bom/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ dependencies {
1515
// Core language module
1616
api(project(":skainet-lang:skainet-lang-core"))
1717

18-
// CPU backend
18+
// Backend abstraction + CPU backend
19+
api(project(":skainet-backends:skainet-backend-api"))
1920
api(project(":skainet-backends:skainet-backend-cpu"))
2021

2122
// IO modules

0 commit comments

Comments
 (0)