aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-06-09 11:24:56 +0200
committerFelix Mulder <felix.mulder@gmail.com>2016-06-09 11:38:41 +0200
commit22b40bf0ff3ee685116a432225b77d395c958c14 (patch)
treebd03c0baa6b7cac070a1463a158ad826ba831ca9 /project
parentdf8490167708d009157710e5ad73fa6f8ed3f6fc (diff)
downloaddotty-22b40bf0ff3ee685116a432225b77d395c958c14.tar.gz
dotty-22b40bf0ff3ee685116a432225b77d395c958c14.tar.bz2
dotty-22b40bf0ff3ee685116a432225b77d395c958c14.zip
Disable binary publishing in bridge
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala7
1 files changed, 5 insertions, 2 deletions
diff --git a/project/Build.scala b/project/Build.scala
index 85a7bb861..712590d1f 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -211,10 +211,13 @@ object DottyBuild extends Build {
),
version :=
"0.1.1-SNAPSHOT-" + VersionUtil.commitDate + "-" + VersionUtil.gitHash,
- // The sources should be published with crossPaths := false, the binaries
- // 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.
crossPaths := false,
+ // Don't publish any binaries for the bridge because of the above
+ publishArtifact in (Compile, packageBin) := false,
+
fork in Test := true,
parallelExecution in Test := false
).