-
Notifications
You must be signed in to change notification settings - Fork 71
/
build.sbt
81 lines (58 loc) · 1.98 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
organization := "eu.fakod"
name := "neo4j-scala"
version := "0.3.4-SNAPSHOT"
description := "Scala wrapper for Neo4j Graph Database"
crossScalaVersions := Seq("2.11.7", "2.10.5")
homepage := Some(url("http://github.com/fakod/neo4j-scala"))
licenses := Seq(
"The Apache Software License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")
)
resolvers += "Neo4j Maven 2 repository" at "https://m2.neo4j.org/content/repositories/releases"
libraryDependencies ++= {
val baseVersion = if (scalaVersion.value.startsWith("2.11")) "2.3.2" else "2.2.2"
val neo4jVersion = baseVersion
val neo4jShellVersion = baseVersion
val neo4jCypherVersion = baseVersion
Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
// Neo4j graph database
"org.neo4j" % "neo4j-kernel" % neo4jVersion,
"org.neo4j" % "neo4j-lucene-index" % neo4jVersion,
"org.neo4j" % "neo4j-shell" % neo4jVersion,
// Cypher
"org.neo4j" % "neo4j-cypher" % neo4jCypherVersion,
// Test
"org.specs2" %% "specs2" % "2.3.13" % "test",
"junit" % "junit" % "4.11" % "test"
)
}
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")
}
fork in Test := true
javaOptions in Test ++= Seq("-Xmx2G")
publishMavenStyle := true
scalacOptions ++= Seq("-deprecation", "-feature", "-Xlint", "-unchecked")
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<developers>
<developer>
<id>FaKod</id>
<name>Christopher Schmidt</name>
<timezone>+1</timezone>
<email>info [at] FaKod.EU</email>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<developerConnection>scm:git:[email protected]:FaKod/neo4j-scala.git</developerConnection>
<url>[email protected]:FaKod/neo4j-scala.git</url>
</scm>
)