-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
29 lines (19 loc) · 927 Bytes
/
build.sbt
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
name := "firebase-client-scala"
organization := "io.github.mkotsur"
// version := @see version.sbt
releasePublishArtifactsAction := PgpKeys.publishSigned.value
scalaVersion := "2.12.1"
scalacOptions in ThisBuild ++= Seq("-unchecked", "-deprecation")
val circeVersion = "0.7.0"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
"io.circe" %% "circe-generic",
"io.circe" %% "circe-parser"
).map(_ % circeVersion)
libraryDependencies += "com.github.kxbmap" %% "configs" % "0.4.4"
libraryDependencies += "org.scalaj" %% "scalaj-http" % "2.3.0"
libraryDependencies += "org.bouncycastle" % "bcpkix-jdk15on" % "1.55"
libraryDependencies += "com.google.api-client" % "google-api-client" % "1.22.0" exclude("com.google.guava", "guava-jdk5")
libraryDependencies += "com.google.identitytoolkit" % "gitkitclient" % "1.2.7"
// Test dependencies
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.0" % "test"