Skip to content

Commit

Permalink
Fix Alerting tool runtime failure on ClassNotFoundException
Browse files Browse the repository at this point in the history
Signed-off-by: Arjun kumar Giri <arjung@amazon.com>
  • Loading branch information
arjunkumargiri committed Dec 7, 2023
1 parent 8bda65a commit 2333d52
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ml-algorithms/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ dependencies {
implementation("ai.djl.onnxruntime:onnxruntime-engine:0.21.0") {
exclude group: "com.microsoft.onnxruntime", module: "onnxruntime"
}
compileOnly "org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}"
implementation("org.jetbrains.kotlin:kotlin-stdlib:${kotlin_version}") {
exclude group: "org.jetbrains", module: "annotations"
}

def os = DefaultNativePlatform.currentOperatingSystem
//mac doesn't support GPU
Expand Down

0 comments on commit 2333d52

Please sign in to comment.