From 8ba5b6f90e1c3be604b2a4776645cfaac91da8e7 Mon Sep 17 00:00:00 2001 From: Martin Duhem Date: Thu, 16 Jul 2015 14:02:25 +0200 Subject: [PATCH] Don't set `publishMavenStyle := true` for compiler interface --- build.sbt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 4d054b823..a3c7cb753 100644 --- a/build.sbt +++ b/build.sbt @@ -316,8 +316,7 @@ lazy val compileInterfaceProj = (project in compilePath / "interface"). // needed because we fork tests and tests are ran in parallel so we have multiple Scala // compiler instances that are memory hungry javaOptions in Test += "-Xmx1G", - publishArtifact in (Compile, packageSrc) := true, - publishMavenStyle := true + publishArtifact in (Compile, packageSrc) := true ) // Implements the core functionality of detecting and propagating changes incrementally.