Skip to content

Commit

Permalink
Added support for Rejin R interpreter in DynaML REPL
Browse files Browse the repository at this point in the history
  • Loading branch information
mandar2812 committed Dec 12, 2016
1 parent 4963678 commit d751dd4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ val baseSettings = Seq(
resolvers in ThisBuild ++= Seq(
"jzy3d-releases" at "http://maven.jzy3d.org/releases",
"Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases",
"BeDataDriven" at "https://nexus.bedatadriven.com/content/groups/public",
Resolver.sonatypeRepo("public"))
)

Expand All @@ -31,7 +32,7 @@ lazy val commonSettings = Seq(
replDependency ++ loggingDependency ++
linearAlgebraDependencies ++ chartsDependencies ++
tinkerpopDependency ++ notebookInterfaceDependency ++
openMLDependency)
openMLDependency ++ rejinDependency)
)

lazy val pipes = (project in file("dynaml-pipes")).settings(baseSettings:_*)
Expand Down
4 changes: 4 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,9 @@ object Dependencies {
"com.tinkerpop" % "frames" % "2.5.0" % "compile"
)

val rejinDependency = Seq(
"org.renjin" % "renjin-script-engine" % "0.8.2297"
)

val notebookInterfaceDependency = Seq()
}

0 comments on commit d751dd4

Please sign in to comment.