-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
56 lines (38 loc) · 1.4 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
// ---------------------------------------------------------------------------
// Basic settings
name := "argot"
organization := "org.clapper"
version := "1.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.10.4"
// ---------------------------------------------------------------------------
// Additional compiler options and plugins
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature")
crossScalaVersions := Seq("2.10.4", "2.11.5")
// ---------------------------------------------------------------------------
// Dependendencies
libraryDependencies ++= Seq(
"org.clapper" %% "grizzled-scala" % "1.3",
"org.scalatest" %% "scalatest" % "2.2.0" % "test"
)
// ---------------------------------------------------------------------------
// Publishing criteria
// Don't set publishTo. The Bintray plugin does that automatically.
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ => false }
pomExtra := (
<scm>
<url>[email protected]:bmc/argot.git/</url>
<connection>scm:git:[email protected]:bmc/argot.git</connection>
</scm>
<developers>
<developer>
<id>bmc</id>
<name>Brian Clapper</name>
<url>http://www.clapper.org/bmc</url>
</developer>
</developers>
)