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 df84901 commit 22b40bfCopy full SHA for 22b40bf
project/Build.scala
@@ -211,10 +211,13 @@ object DottyBuild extends Build {
211
),
212
version :=
213
"0.1.1-SNAPSHOT-" + VersionUtil.commitDate + "-" + VersionUtil.gitHash,
214
- // The sources should be published with crossPaths := false, the binaries
215
- // are unused so it doesn't matter.
+ // The sources should be published with crossPaths := false since they
+ // need to be compiled by the project using the bridge.
216
crossPaths := false,
217
218
+ // Don't publish any binaries for the bridge because of the above
219
+ publishArtifact in (Compile, packageBin) := false,
220
+
221
fork in Test := true,
222
parallelExecution in Test := false
223
).
0 commit comments