forked from AnormCypher/AnormCypher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (21 loc) · 985 Bytes
/
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
name := "AnormCypher"
version := "0.6.0"
publishMavenStyle := true
organization := "org.anormcypher"
publishTo := Some(Resolver.sftp("AnormCypher repo", "repo.anormcypher.org", "/home/wfreeman/www/repo.anormcypher.org"))
scalaVersion := "2.11.6"
scalacOptions ++= Seq("-encoding", "UTF-8", "-deprecation", "-unchecked", "-feature")
resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
parallelExecution in Test := false
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"net.databinder.dispatch" %% "dispatch-core" % "0.11.1",
"com.typesafe.play" %% "play-json" % "2.3.5",
"org.scala-lang.modules" %% "scala-async" % "0.9.2"
)
seq(lsSettings :_*)
(LsKeys.tags in LsKeys.lsync) := Seq("anorm", "cypher", "neo4j", "neo")
(externalResolvers in LsKeys.lsync) := Seq(
"anormcypher resolver" at "http://repo.anormcypher.org")
(description in LsKeys.lsync) :=
"A Neo4j library modeled after Play's Anorm."