Skip to content

Commit a2a8c5c

Browse files
author
Alejandro Gómez
committed
First draft of evaluation with dependency loading
1 parent 0b8b409 commit a2a8c5c

File tree

5 files changed

+665
-11
lines changed

5 files changed

+665
-11
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ project/plugins/project/
1919
# Scala-IDE specific
2020
.scala_dependencies
2121
.worksheet
22+
23+
# Ensime
24+
.ensime

build.sbt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@ lazy val evaluator = (project in file("."))
66
scalaVersion := "2.11.8",
77
resolvers += Resolver.sonatypeRepo("snapshots"),
88
libraryDependencies ++= Seq(
9-
"com.twitter" %% "util-eval" % "6.34.0",
9+
"org.scala-lang" % "scala-compiler" % scalaVersion.value,
10+
"com.twitter" %% "util-core" % "6.34.0",
1011
"io.monix" %% "monix" % "2.0-RC8",
1112
"org.http4s" %% "http4s-dsl" % http4sVersion,
1213
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
1314
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
1415
"org.log4s" %% "log4s" % "1.3.0",
1516
"org.slf4j" % "slf4j-simple" % "1.7.21",
17+
"io.get-coursier" %% "coursier" % "1.0.0-M12",
18+
"io.get-coursier" %% "coursier-cache" % "1.0.0-M12",
1619
"org.scalatest" %% "scalatest" % "2.2.4" % "test"
1720
)
1821
)

0 commit comments

Comments
 (0)