@@ -39,11 +39,11 @@ lazy val proto = (crossProject(JSPlatform, JVMPlatform)
3939 libraryDependencies -= (" com.thesamet.scalapb" %%% " scalapb-runtime" % scalapb.compiler.Version .scalapbVersion),
4040 libraryDependencies += (" com.thesamet.scalapb" %%% " scalapb-runtime" % scalapb.compiler.Version .scalapbVersion)
4141 .cross(CrossVersion .for3Use2_13),
42- PB .targets in Compile := Seq (
43- scalapb.gen() -> (sourceManaged in Compile ).value
42+ Compile / PB .targets := Seq (
43+ scalapb.gen() -> (Compile / sourceManaged ).value
4444 ),
4545 // The trick is in this line:
46- PB .protoSources in Compile := Seq (file(" proto/src/main/protobuf" ))
46+ Compile / PB .protoSources := Seq (file(" proto/src/main/protobuf" ))
4747 )
4848
4949lazy val backends = (crossProject(JVMPlatform , JSPlatform )
@@ -63,7 +63,7 @@ lazy val backends = (crossProject(JVMPlatform, JSPlatform)
6363 )
6464 .jsSettings(
6565 scalaJSUseMainModuleInitializer := true , // , //Testing
66- npmDependencies in Compile += " onnxruntime-web" -> " 1.9.0"
66+ Compile / npmDependencies += " onnxruntime-web" -> " 1.9.0"
6767 )
6868 .jsConfigure { project => project.enablePlugins(ScalablyTypedConverterPlugin ) }
6969
@@ -102,7 +102,7 @@ lazy val docs = (crossProject(JVMPlatform)
102102 )
103103 */
104104
105- skip in publish := true
105+ publish / skip := true
106106
107107lazy val sonatypeSettings = Seq (
108108 sonatypeProfileName := " org.emergent-order" ,
0 commit comments