File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ lazy val scalatestDiagrams = ScalatestBuild.scalatestDiagrams
60
60
lazy val scalatestMatchersCore = ScalatestBuild .scalatestMatchersCore
61
61
lazy val scalatestShouldMatchers = ScalatestBuild .scalatestShouldMatchers
62
62
lazy val scalatestMustMatchers = ScalatestBuild .scalatestMustMatchers
63
+ lazy val scalatestModules = ScalatestBuild .scalatestModules
63
64
lazy val scalatestCoreJS = ScalatestBuild .scalatestCoreJS
64
65
lazy val scalatestFeatureSpecJS = ScalatestBuild .scalatestFeatureSpecJS
65
66
lazy val scalatestFlatSpecJS = ScalatestBuild .scalatestFlatSpecJS
Original file line number Diff line number Diff line change @@ -1077,7 +1077,30 @@ object ScalatestBuild extends BuildCommons with DottyBuild with NativeBuild with
1077
1077
" Bundle-DocURL" -> " http://www.scalatest.org/" ,
1078
1078
" Bundle-Vendor" -> " Artima, Inc."
1079
1079
)
1080
- ).dependsOn(scalatestMatchersCore)
1080
+ ).dependsOn(scalatestMatchersCore)
1081
+
1082
+ lazy val scalatestModules = (project in file(" modules/jvm/modules-aggregation" ))
1083
+ .settings(sharedSettings : _* )
1084
+ .settings(
1085
+ publishArtifact := false ,
1086
+ publish := {},
1087
+ publishLocal := {},
1088
+ scalacOptions in (Compile , doc) := List .empty
1089
+ ).aggregate(
1090
+ scalatestCompatible,
1091
+ scalatestCore,
1092
+ scalatestFeatureSpec,
1093
+ scalatestFlatSpec,
1094
+ scalatestFreeSpec,
1095
+ scalatestFunSuite,
1096
+ scalatestPropSpec,
1097
+ scalatestRefSpec,
1098
+ scalatestWordSpec,
1099
+ scalatestDiagrams,
1100
+ scalatestMatchersCore,
1101
+ scalatestShouldMatchers,
1102
+ scalatestMustMatchers
1103
+ )
1081
1104
1082
1105
def gentestsLibraryDependencies =
1083
1106
Seq (
You can’t perform that action at this time.
0 commit comments