-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
55 lines (47 loc) · 2.22 KB
/
build.sbt
File metadata and controls
55 lines (47 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright (C) 2018 Don Kelly <karfai@gmail.com>
// This file is part of Interlibr, a functional component of an
// Internet of Rules (IoR).
// ACKNOWLEDGEMENTS
// Funds: Xalgorithms Foundation
// Collaborators: Don Kelly, Joseph Potvin and Bill Olders.
// This program is free software: you can redistribute it and/or
// modify it under the terms of the GNU Affero General Public License
// as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Affero General Public License for more details.
// You should have received a copy of the GNU Affero General Public
// License along with this program. If not, see
// <http://www.gnu.org/licenses/>.
lazy val VERSION_MONGO_SCALA = "2.4.2"
lazy val VERSION_SCALA = "2.12.4"
lazy val VERSION_SCALA_TEST = "3.0.5"
lazy val VERSION_CASSANDRA = "3.5.0"
lazy val VERSION_SCALA_MOCK = "4.1.0"
lazy val VERSION_JODA = "2.10"
lazy val VERSION_JODA_CONVERT = "2.1"
// for easy hexdigest generation
lazy val VERSION_PLAY = "2.6.0"
lazy val VERSION_FAKER = "0.15"
lazy val meta = Seq(
name := """il-storage""",
organization := "org.xalgorithms",
version := "0.0.8",
scalaVersion := VERSION_SCALA,
)
lazy val lib_deps = Seq(
// outer
"org.mongodb.scala" %% "mongo-scala-driver" % VERSION_MONGO_SCALA,
"com.typesafe.play" %% "play" % VERSION_PLAY,
"com.datastax.cassandra" % "cassandra-driver-core" % VERSION_CASSANDRA,
"joda-time" % "joda-time" % VERSION_JODA,
"org.joda" % "joda-convert" % VERSION_JODA_CONVERT,
"org.scalamock" %% "scalamock" % VERSION_SCALA_MOCK % Test,
"org.scalatest" %% "scalatest" % VERSION_SCALA_TEST % Test,
"com.github.javafaker" % "javafaker" % VERSION_FAKER % Test,
)
lazy val root = (project in file("."))
.settings(meta)
.settings(libraryDependencies ++= lib_deps)