-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
22 lines (16 loc) · 1018 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name := """TOTEM"""
organization := "com.crag"
maintainer := "[email protected]"
version := "1.3.1"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.12.8"
libraryDependencies += guice
libraryDependencies += "org.yaml" % "snakeyaml" % "1.17"
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.6.10"
libraryDependencies += "com.googlecode.json-simple" % "json-simple" % "1.1.1"
libraryDependencies += "com.google.code.gson" % "gson" % "2.8.5"
libraryDependencies += "com.typesafe" % "config" % "1.3.2"
// libraries installed with R. Update accordingly with your installation
libraryDependencies += "org.rosuda" % "JRI" % "1.0" from "file:///Library/Frameworks/R.framework/Versions/3.6/Resources/library/rJava/jri/JRI.jar"
libraryDependencies += "org.rosuda.REngine" % "REngine" % "2.1.0"
libraryDependencies += "org.rosuda.REngine.JRI" % "JRIEngine" % "1.0" from "file:///Library/Frameworks/R.framework/Versions/3.6/Resources/library/rJava/jri/JRIEngine.jar"