-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
42 lines (31 loc) · 1.25 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
name := "stream-s3-wrapper"
version := "2.8.3"
scalaVersion := "2.12.2"
crossScalaVersions := Seq("2.11.8", "2.12.2")
organization := "io.dronekit"
resolvers += "Artifactory" at "https://dronekit.artifactoryonline.com/dronekit/libs-snapshot-local/"
credentials += Credentials(Path.userHome / ".sbt" / ".credentials")
isSnapshot := true
publishTo := {
val artifactory = "https://dronekit.artifactoryonline.com/"
if (isSnapshot.value)
Some("snapshots" at artifactory + s"dronekit/libs-snapshot-local;build.timestamp=${new java.util.Date().getTime}")
else
Some("snapshots" at artifactory + "dronekit/libs-release-local")
}
libraryDependencies ++= {
val akkaV = "2.5.0"
val akkaHttpV = "10.0.5"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
"com.typesafe.akka" %% "akka-http" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV,
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"ch.qos.logback" % "logback-classic" % "1.1.3",
"com.amazonaws" % "aws-java-sdk-s3" % "1.11.122",
"com.amazonaws" % "aws-java-sdk-core" % "1.11.122",
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)
}