File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -594,14 +594,14 @@ lazy val `kamon-armeria` = (project in file("instrumentation/kamon-armeria"))
594
594
logbackClassic % " test"
595
595
) ++ grpcDependencies
596
596
},
597
- skip in Test := {
597
+ Test / skip := {
598
598
CrossVersion .partialVersion(scalaVersion.value) match {
599
599
case Some ((2 , n)) if n >= 12 => false
600
600
case _ => true // skip scala 2.11 tests because of compatibility issues with protobuf
601
601
}
602
602
},
603
- PB .protoSources in Test := Seq (file(" instrumentation/kamon-armeria/src/test/protobuf" )),
604
- PB .targets in Test := Seq (scalapb.gen() -> (sourceManaged in Test ).value)
603
+ Test / PB .protoSources := Seq (file(" instrumentation/kamon-armeria/src/test/protobuf" )),
604
+ Test / PB .targets := Seq (scalapb.gen() -> (Test / sourceManaged ).value)
605
605
)
606
606
.dependsOn(`kamon-instrumentation-common`, `kamon-testkit` % " test" )
607
607
You can’t perform that action at this time.
0 commit comments