@@ -548,12 +548,14 @@ object projects:
548548 project = " Equal" ,
549549 sbtTestCommand = " rootJVM/test" ,
550550 sbtPublishCommand = " rootJVM/publishLocal" ,
551+ dependencies = List (scalatest),
551552 )
552553
553554 lazy val scissFingerTree = SbtCommunityProject (
554555 project = " FingerTree" ,
555556 sbtTestCommand = " rootJVM/test" ,
556557 sbtPublishCommand = " rootJVM/publishLocal" ,
558+ dependencies = List (scalatest),
557559 )
558560
559561 lazy val scissLog = SbtCommunityProject (
@@ -566,32 +568,35 @@ object projects:
566568 project = " Model" ,
567569 sbtTestCommand = " rootJVM/test" ,
568570 sbtPublishCommand = " rootJVM/publishLocal" ,
571+ dependencies = List (scalatest),
569572 )
570573
571574 lazy val scissNumbers = SbtCommunityProject (
572575 project = " Numbers" ,
573576 sbtTestCommand = " rootJVM/test" ,
574577 sbtPublishCommand = " rootJVM/publishLocal" ,
578+ dependencies = List (scalatest),
575579 )
576580
577581 lazy val scissSerial = SbtCommunityProject (
578582 project = " Serial" ,
579583 sbtTestCommand = " rootJVM/test" ,
580584 sbtPublishCommand = " rootJVM/publishLocal" ,
585+ dependencies = List (scalatest),
581586 )
582587
583588 lazy val scissAsyncFile = SbtCommunityProject (
584589 project = " AsyncFile" ,
585590 sbtTestCommand = " rootJVM/test" ,
586591 sbtPublishCommand = " rootJVM/publishLocal" ,
587- dependencies = List (scissLog),
592+ dependencies = List (scissLog, scalatest ),
588593 )
589594
590595 lazy val scissSpan = SbtCommunityProject (
591596 project = " Span" ,
592597 sbtTestCommand = " rootJVM/test" ,
593598 sbtPublishCommand = " rootJVM/publishLocal" ,
594- dependencies = List (scissSerial),
599+ dependencies = List (scissSerial, scalatest ),
595600 )
596601
597602 lazy val scalaSTM = SbtCommunityProject (
@@ -605,7 +610,7 @@ object projects:
605610 project = " Lucre" ,
606611 sbtTestCommand = " adjunctJVM/test;baseJVM/test;confluentJVM/test;coreJVM/test;dataJVM/test;expr0JVM/test;expr1JVM/test;exprJVM/test;geomJVM/test;lucre-bdb/test;testsJVM/test" ,
607612 sbtPublishCommand = " adjunctJVM/publishLocal;baseJVM/publishLocal;confluentJVM/publishLocal;coreJVM/publishLocal;dataJVM/publishLocal;expr0JVM/publishLocal;expr1JVM/publishLocal;exprJVM/publishLocal;geomJVM/publishLocal;lucre-bdb/publishLocal" ,
608- dependencies = List (scalaSTM, scissAsyncFile, scissEqual, scissFingerTree, scissLog, scissModel, scissNumbers, scissSerial, scissSpan),
613+ dependencies = List (scalaSTM, scissAsyncFile, scissEqual, scissFingerTree, scissLog, scissModel, scissNumbers, scissSerial, scissSpan, scalatest ),
609614 )
610615
611616end projects
0 commit comments