forked from pk11/sedis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
37 lines (32 loc) · 1023 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
35
36
37
bintrayReleaseOnPublish in ThisBuild := false
organization := "org.sedis"
name := "sedis"
crossScalaVersions := Seq("2.10.6", "2.11.8")
licenses += ("MIT", url("https://spdx.org/licenses/MIT"))
libraryDependencies ++= Seq(
"redis.clients" % "jedis" % "2.4.2",
"org.scalatest" %% "scalatest" % "2.2.0" % "test"
)
publishArtifact in Test := false
publishMavenStyle := true
pomIncludeRepository := { _ => false }
pomExtra := (
<url>https://github.com/pk11/sedis</url>
<scm>
<connection>scm:git:github.com/pk11/sedis.git</connection>
<developerConnection>scm:git:[email protected]:pk11/sedis.git</developerConnection>
<url>https://github.com/pk11/sedis</url>
</scm>
<developers>
<developer>
<id>pk11</id>
<name>Peter Hausel</name>
<url>https://github.com/pk11</url>
</developer>
<developer>
<id>graingert</id>
<name>Thomas Grainger</name>
<url>https://graingert.co.uk/</url>
</developer>
</developers>
)