-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
53 lines (40 loc) · 1.37 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
name := "orientdb-scala-stream"
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))
homepage := Some(url("https://github.com/KadekM/orientdb-scala-stream"))
organization := "com.marekkadek"
version := "0.5.5-SNAPSHOT"
scalaVersion := "2.11.7"
fork := true // because of OrientDb
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream-experimental" % "2.0.3",
"com.orientechnologies" % "orientdb-server" % "2.1.10",
"org.reactivestreams" % "reactive-streams-tck" % "1.0.0" % Test,
"org.scalatest" %% "scalatest" % "2.2.4" % Test,
"com.typesafe.akka" %% "akka-stream-testkit-experimental" % "2.0.3" % Test
)
scalacOptions ++= Seq(
"-Xlint",
"-deprecation"
)
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")
}
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra :=
<scm>
<url>https://github.com/kadekm/orientdb-scala-stream</url>
<connection>scm:git://github.com/kadekm/orientdb-scala-stream.git</connection>
</scm>
<developers>
<developer>
<id>kadekm</id>
<name>Marek Kadek</name>
<url>https://github.com/KadekM</url>
</developer>
</developers>