-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
87 lines (64 loc) · 2.73 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// ---------------------------------------------------------------------------
// Basic settings
name := "argot"
organization := "org.clapper"
version := "0.4"
licenses := Seq("BSD" -> url("http://software.clapper.org/argot/license.html"))
homepage := Some(url("http://software.clapper.org/argot/"))
description := "A command-line option and parameter parser"
scalaVersion := "2.9.1"
// ---------------------------------------------------------------------------
// Additional compiler options and plugins
scalacOptions ++= Seq("-deprecation", "-unchecked")
crossScalaVersions := Seq(
"2.9.1-1", "2.9.1", "2.9.0", "2.9.0-1", "2.8.2", "2.8.1", "2.8.0"
)
seq(lsSettings :_*)
(LsKeys.tags in LsKeys.lsync) := Seq("argument parser", "command line", "parameters")
(description in LsKeys.lsync) <<= description(d => d)
// ---------------------------------------------------------------------------
// ScalaTest dependendency
libraryDependencies <<= (scalaVersion, libraryDependencies) { (sv, deps) =>
// Select ScalaTest version based on Scala version
val scalatestVersionMap = Map("2.8.0" -> ("scalatest_2.8.0", "1.3.1.RC2"),
"2.8.1" -> ("scalatest_2.8.1", "1.7.1"),
"2.8.2" -> ("scalatest_2.8.1", "1.7.1"),
"2.9.0" -> ("scalatest_2.9.0", "1.7.1"),
"2.9.0-1" -> ("scalatest_2.9.0-1", "1.7.1"),
"2.9.1" -> ("scalatest_2.9.1", "1.7.1"),
"2.9.1-1" -> ("scalatest_2.9.0-1", "1.7.1"))
val (scalatestArtifact, scalatestVersion) = scalatestVersionMap.getOrElse(
sv, error("Unsupported Scala version: " + scalaVersion)
)
deps :+ "org.scalatest" % scalatestArtifact % scalatestVersion % "test"
}
// ---------------------------------------------------------------------------
// Other dependendencies
libraryDependencies ++= Seq(
"org.clapper" %% "grizzled-scala" % "1.0.12"
)
// ---------------------------------------------------------------------------
// Publishing criteria
publishTo <<= version { v: String =>
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<scm>
<url>git@github.com:bmc/argot.git/</url>
<connection>scm:git:git@github.com:bmc/argot.git</connection>
</scm>
<developers>
<developer>
<id>bmc</id>
<name>Brian Clapper</name>
<url>http://www.clapper.org/bmc</url>
</developer>
</developers>
)