forked from josephpconley/play-jsonpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
48 lines (35 loc) · 1.28 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
name := "play-jsonpath"
organization := "com.josephpconley"
version := "1.2-SNAPSHOT"
scalaVersion := "2.11.4"
crossScalaVersions := Seq("2.10.4", "2.11.4")
resolvers += "Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-json" % "[2.2.0,2.3.+]",
"io.gatling" %% "jsonpath" % "[0.4.0,)",
"com.typesafe.play" %% "play-test" % "[2.2.0,2.3.+]" % "test"
)
publishMavenStyle := true
publishArtifact in Test := false
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")
}
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/josephpconley/play-jsonpath"))
pomExtra := (
<scm>
<url>[email protected]:josephpconley/play-jsonpath.git</url>
<connection>scm:git:[email protected]:josephpconley/play-jsonpath.git</connection>
</scm>
<developers>
<developer>
<id>josephpconley</id>
<name>Joe Conley</name>
<url>http://www.josephpconley.com</url>
</developer>
</developers>)