Don't set `publishMavenStyle := true` for compiler interface

This commit is contained in:
Martin Duhem 2015-07-16 14:02:25 +02:00
parent f3dc2ba282
commit 8ba5b6f90e
1 changed files with 1 additions and 2 deletions

View File

@ -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.