Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions asr-domain/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@ plugins {
// kotlin-test in commonTest is added automatically (SkainetMultiplatformExtension's
// kotlinTestInCommonTest default).
skainet {
// sk.ainet.multiplatform 1.1.0 defaults the JVM target to 17; the engine artifacts and the rest of
// this build are JVM 21, and inlining across the two fails to compile.
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
namespace = "sk.ainet.asr.domain"
}
3 changes: 3 additions & 0 deletions llm-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ plugins {
// declared manually below instead, alongside this module's own already-manual source-set
// hierarchy (kotlin.mpp.applyDefaultHierarchyTemplate=false, also in gradle.properties).
skainet {
// sk.ainet.multiplatform 1.1.0 defaults the JVM target to 17; the engine artifacts and the rest of
// this build are JVM 21, and inlining across the two fails to compile.
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
namespace = "sk.ainet.apps.llm"
// sk.ainet.multiplatform defaults explicitApi to true; this module has a handful of
// declarations (DecoderGgufWeightLoader.kt's GGUF key-naming helpers) missing visibility
Expand Down
3 changes: 3 additions & 0 deletions transformer-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ plugins {
// Targets: gradle.properties (skainet.targets=jvm,js,wasmJs,wasmWasi,apple,linux,androidNative --
// the full default plus androidNative, since this module needs both androidNativeArm32/64).
skainet {
// sk.ainet.multiplatform 1.1.0 defaults the JVM target to 17; the engine artifacts and the rest of
// this build are JVM 21, and inlining across the two fails to compile.
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
namespace = "sk.ainet.lang.nn"
}

Expand Down
Loading