-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
59 lines (45 loc) · 1.66 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
55
56
57
58
59
name := "neo4s"
organization := "ru.dgolubets"
version := "0.1.1"
scalaVersion := "2.11.7"
scalacOptions ++= Seq("-feature", "-deprecation")
libraryDependencies ++= Seq(
// main
"com.typesafe.play" %% "play-iteratees" % "2.4.3",
"com.typesafe.play.extras" %% "iteratees-extras" % "1.5.0",
"com.typesafe.akka" %% "akka-stream-experimental" % "1.0",
"com.typesafe.akka" %% "akka-http-core-experimental" % "1.0",
"com.typesafe.play" %% "play-json" % "2.4.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
// test
"ch.qos.logback" % "logback-classic" % "1.1.1" % "test",
"org.scalatest" % "scalatest_2.11" % "2.2.4" % "test",
"org.scalamock" %% "scalamock-scalatest-support" % "3.2.2" % "test",
"com.typesafe.akka" %% "akka-testkit" % "2.3.14" % "test",
"com.typesafe.akka" %% "akka-stream-testkit-experimental" % "1.0" % "test"
)
// publish
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 }
licenses := Seq("Apache License" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/DGolubets/neo4s"))
pomExtra :=
<scm>
<url>[email protected]:DGolubets/neo4s.git</url>
<connection>scm:git:[email protected]:DGolubets/neo4s.git</connection>
</scm>
<developers>
<developer>
<id>DGolubets</id>
<name>Dmitry Golubets</name>
<email>[email protected]</email>
</developer>
</developers>