We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 891df92 commit 55a4107Copy full SHA for 55a4107
build.sbt
@@ -22,11 +22,11 @@ val collections = ProjectRef(file(".."), "collections")
22
lazy val output = project
23
.settings(
24
resolvers := resolvers.in(collections).value,
25
- libraryDependencies := libraryDependencies.in(collections).value,
+ libraryDependencies ++= libraryDependencies.in(collections).value,
26
scalaVersion := scalaVersion.in(collections).value,
27
scalaBinaryVersion := scalaBinaryVersion.in(collections).value
28
)
29
- .dependsOn(collections) // collections/publishLocal is still necessary.
+ .dependsOn(collections) // collections/publishLocal is still necessary.
30
31
lazy val tests = project
32
0 commit comments