-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
63 lines (51 loc) · 1.63 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
import SonatypeKeys._
// Your project orgnization (package name)
organization := "com.mrkaspa"
// Your profile name of the sonatype account. The default is the same with the organization
sonatypeProfileName := "com.mrkaspa"
name := """neo4s"""
version := "2.2.2"
scalaVersion := "2.11.6"
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
resolvers ++= Seq(
"anormcypher" at "http://repo.anormcypher.org/",
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
)
libraryDependencies ++= {
val scalaTestV = "2.2.1"
Seq(
"com.kreattiewe" %% "case-class-mapper" % "1.0.1",
"org.anormcypher" %% "anormcypher" % "0.6.0",
"org.scala-lang" % "scala-reflect" % "2.11.6",
"org.scalatest" %% "scalatest" % scalaTestV % "test"
)
}
pomExtra := (
<url>https://github.com/mrkaspa/Neo4S</url>
<licenses>
<license>
<name>BSD-style</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>github.com/mrkaspa/Neo4S.git</url>
<connection>scm:git:[email protected]:mrkaspa/Neo4S.git</connection>
</scm>
<developers>
<developer>
<id>mrkaspa</id>
<name>Michel Perez</name>
<url>http://mrkaspa.com</url>
</developer>
</developers>)