forked from findify/s3mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
54 lines (41 loc) · 1.46 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
43
44
45
46
47
48
49
50
51
52
53
54
name := "s3mock"
version := "0.1.10"
organization := "io.findify"
scalaVersion := "2.11.8"
crossScalaVersions := Seq("2.11.8", "2.12.1")
val akkaVersion = "2.4.17"
licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/findify/s3mock"))
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-http" % "10.0.4",
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % "test",
"org.scala-lang.modules" %% "scala-xml" % "1.0.6",
"com.github.pathikrit" %% "better-files" % "2.17.1",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"com.amazonaws" % "aws-java-sdk-s3" % "1.11.104",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"ch.qos.logback" % "logback-classic" % "1.2.1",
"org.iq80.leveldb" % "leveldb" % "0.9"
)
parallelExecution in Test := false
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
pomExtra := <scm>
<url>[email protected]:findify/s3mock.git</url>
<connection>scm:git:[email protected]:findify/s3mock.git</connection>
</scm>
<developers>
<developer>
<id>romangrebennikov</id>
<name>Roman Grebennikov</name>
<url>http://www.dfdx.me</url>
</developer>
</developers>
test in assembly := {}