@@ -514,7 +514,7 @@ object ScalatestBuild extends BuildCommons with DottyBuild with NativeBuild with
514
514
scalacOptions ++= (if (scalaBinaryVersion.value == " 2.10" || scalaVersion.value.startsWith(" 2.13" )) Seq .empty[String ] else Seq (" -Ypartial-unification" ))
515
515
).dependsOn(scalatest % " test" , commonTest % " test" )
516
516
517
- lazy val scalatestApp = Project (" scalatestApp" , file(" . " ))
517
+ lazy val scalatestApp = Project (" scalatestApp" , file(" scalatest-app " ))
518
518
.enablePlugins(SbtOsgi )
519
519
.settings(sharedSettings : _* )
520
520
.settings(scalatestDocSettings : _* )
@@ -538,6 +538,7 @@ object ScalatestBuild extends BuildCommons with DottyBuild with NativeBuild with
538
538
Seq .empty[File ]
539
539
}.taskValue
540
540
},
541
+ aggregate in publishArtifact := false ,
541
542
scalatestDocSettings,
542
543
unmanagedResourceDirectories in Compile += baseDirectory.value / " scalatest" / " src" / " main" / " resources" ,
543
544
mimaPreviousArtifacts := Set (organization.value %% name.value % previousReleaseVersion),
@@ -594,9 +595,9 @@ object ScalatestBuild extends BuildCommons with DottyBuild with NativeBuild with
594
595
" Bundle-Vendor" -> " Artima, Inc." ,
595
596
" Main-Class" -> " org.scalatest.tools.Runner"
596
597
)
597
- ).dependsOn(scalacticMacro % " compile-internal, test-internal" , scalactic % " compile-internal" , scalatest % " compile-internal" ).aggregate(scalacticMacro, scalactic, scalatest, commonTest, scalacticTest, scalatestTest)
598
+ ).dependsOn(scalacticMacro % " compile-internal, test-internal" , scalactic % " compile-internal" , scalatest % " compile-internal" )
598
599
599
- lazy val rootProject = scalatestApp
600
+ lazy val rootProject = Project ( " root " , file( " . " )).aggregate(scalacticMacro, scalactic, scalatest, commonTest, scalacticTest, scalatestTest)
600
601
601
602
lazy val scalatestCompatible = Project (" scalatestCompatible" , file(" scalatest-compatible" ))
602
603
.enablePlugins(SbtOsgi )
0 commit comments