@@ -11,13 +11,12 @@ scalaVersion := dottyVersion
11
11
12
12
inThisBuild(
13
13
List (
14
- scalaVersion := " 3.7.1-RC1" ,
15
- semanticdbEnabled := true ,
16
- semanticdbVersion := scalafixSemanticdb.revision
17
- )
14
+ scalaVersion := " 3.7.1-RC1" ,
15
+ semanticdbEnabled := true ,
16
+ semanticdbVersion := scalafixSemanticdb.revision
17
+ )
18
18
)
19
19
20
-
21
20
lazy val commonSettings = Seq (
22
21
organization := " org.emergentorder.onnx" ,
23
22
version := " 0.18.0" ,
@@ -37,7 +36,7 @@ lazy val commonSettings = Seq(
37
36
// "-Xfatal-warnings",
38
37
" -unchecked" ,
39
38
" -deprecation" ,
40
- // "-release:21 ",
39
+ // "-release:24 ",
41
40
" -rewrite" ,
42
41
" -source:3.7-migration" ,
43
42
" -Wunused:all"
@@ -92,8 +91,8 @@ lazy val backends = (crossProject(JSPlatform, JVMPlatform)
92
91
name := " onnx-scala-backends" ,
93
92
mimaPreviousArtifacts := Set (" org.emergent-order" %%% " onnx-scala-backends" % " 0.17.0" ),
94
93
libraryDependencies ++= Seq (
95
- " com.microsoft.onnxruntime" % " onnxruntime" % " 1.21.1 " ,
96
- " com.microsoft.onnxruntime" % " onnxruntime-extensions" % " 0.13.0"
94
+ " com.microsoft.onnxruntime" % " onnxruntime" % " 1.22.0 "
95
+ // "com.microsoft.onnxruntime" % "onnxruntime-extensions" % "0.13.0"
97
96
),
98
97
libraryDependencies += (" org.scalatest" %%% " scalatest" % scalaTestVersion) % Test ,
99
98
crossScalaVersions := Seq (dottyVersion)
@@ -217,6 +216,9 @@ lazy val backends = (crossProject(JSPlatform, JVMPlatform)
217
216
// which slows down the build (particularly the doc build, for publishing) considerably
218
217
// TODO: minimize to reduce build time and size of js output
219
218
.jsConfigure { project => project.enablePlugins(ScalablyTypedConverterExternalNpmPlugin ) }
219
+ .jvmConfigure { project =>
220
+ project.enablePlugins(JavaAppPackaging , GraalVMNativeImagePlugin )
221
+ } // GraalVMNativeImagePlugin) }
220
222
// ScalablyTypedConverterExternalNpmPlugin) }
221
223
222
224
lazy val core = (crossProject(JSPlatform , JVMPlatform , NativePlatform )
0 commit comments