-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.sbt
43 lines (31 loc) · 1 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
import SonatypeKeys._
name := "ScalaVerbalExpression"
version := "1.0.0"
description := "VerbalExpressions in Scala"
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
organization := "com.github.verbalexpressions"
scalaVersion := "2.11.7"
crossScalaVersions := Seq("2.10.6", "2.11.7")
scalacOptions ++= Seq(
"-unchecked", "-deprecation", "-feature",
"-language:postfixOps,implicitConversions,experimental.macros,dynamics,existentials,higherKinds"
)
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "2.3.13" % "test"
)
sonatypeSettings
autoCompilerPlugins := true
pomExtra := {
<url>http://github.com/pathikrit/ScalaVerbalExpressions</url>
<scm>
<url>[email protected]:pathikrit/ScalaVerbalExpressions.git</url>
<connection>scm:git:[email protected]:pathikrit/ScalaVerbalExpressions.git</connection>
</scm>
<developers>
<developer>
<id>pathikrit</id>
<name>Pathikrit Bhowmick</name>
<url>http://github.com/pathikrit</url>
</developer>
</developers>
}