@@ -39,11 +39,11 @@ lazy val proto = (crossProject(JSPlatform, JVMPlatform)
39
39
libraryDependencies -= (" com.thesamet.scalapb" %%% " scalapb-runtime" % scalapb.compiler.Version .scalapbVersion),
40
40
libraryDependencies += (" com.thesamet.scalapb" %%% " scalapb-runtime" % scalapb.compiler.Version .scalapbVersion)
41
41
.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
44
44
),
45
45
// 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" ))
47
47
)
48
48
49
49
lazy val backends = (crossProject(JVMPlatform , JSPlatform )
@@ -63,7 +63,7 @@ lazy val backends = (crossProject(JVMPlatform, JSPlatform)
63
63
)
64
64
.jsSettings(
65
65
scalaJSUseMainModuleInitializer := true , // , //Testing
66
- npmDependencies in Compile += " onnxruntime-web" -> " 1.9.0"
66
+ Compile / npmDependencies += " onnxruntime-web" -> " 1.9.0"
67
67
)
68
68
.jsConfigure { project => project.enablePlugins(ScalablyTypedConverterPlugin ) }
69
69
@@ -102,7 +102,7 @@ lazy val docs = (crossProject(JVMPlatform)
102
102
)
103
103
*/
104
104
105
- skip in publish := true
105
+ publish / skip := true
106
106
107
107
lazy val sonatypeSettings = Seq (
108
108
sonatypeProfileName := " org.emergent-order" ,
0 commit comments