Skip to content

Commit

Permalink
Fix a compile error from upgrading to bloop-config v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Olafur Pall Geirsson committed Oct 3, 2019
1 parent 4f0af50 commit e970d01
Showing 1 changed file with 7 additions and 6 deletions.
Expand Up @@ -242,13 +242,15 @@ private class BloopPants(
val javaHome = Option(System.getProperty("java.home")).map(Paths.get(_))

C.Project(
id,
name = id,
directory = baseDirectory,
workspaceDir = Some(workspace),
sources,
dependencies = dependsOn,
dependencyClassdirectories ++ libraryDependencyClasspaths,
out,
classDirectory,
classpath = dependencyClassdirectories ++ libraryDependencyClasspaths,
out = out,
classesDir = classDirectory,
resources = None,
scala = Some(
C.Scala(
"org.scala-lang",
Expand All @@ -273,8 +275,7 @@ private class BloopPants(
sbt = None,
test = None,
platform = Some(C.Platform.Jvm(C.JvmConfig(javaHome, Nil), None)),
resolution = Some(C.Resolution(libraryDependencySources.toList)),
resources = None
resolution = Some(C.Resolution(libraryDependencySources.toList))
)
}

Expand Down

0 comments on commit e970d01

Please sign in to comment.