forked from thesamet/kdtree-scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
52 lines (37 loc) · 1.14 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
import SonatypeKeys._
import sbtrelease._
import ReleaseStateTransformations._
sonatypeSettings
organization := "com.thesamet"
name := "kdtree"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.4" % "test"
scalacOptions ++= Seq("-unchecked", "-deprecation")
scalaVersion := "2.10.4"
crossScalaVersions := Seq("2.11.5", "2.10.4")
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { x => false }
releaseSettings
pomExtra := (
<url>https://github.com/thesamet/kdtree-scala</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/thesamet/kdtree-scala</url>
<connection>scm:git:[email protected]:thesamet/kdtree-scala.git</connection>
</scm>
<developers>
<developer>
<id>thesamet</id>
<name>Nadav Samet</name>
<url>http://www.thesamet.com</url>
</developer>
</developers>
)
ReleaseKeys.crossBuild := true
ReleaseKeys.publishArtifactsAction := PgpKeys.publishSigned.value