-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.sbt
44 lines (35 loc) · 1.16 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
name := "bond"
organization := "net.fwbrasil"
scalaVersion := "2.11.8"
libraryDependencies += "org.scalatest" %% "scalatest" % "2.2.6" % "test"
libraryDependencies += "net.fwbrasil" % "smirror_2.11" % "0.9"
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
libraryDependencies += "com.chuusai" %% "shapeless" % "2.3.0"
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
pomExtra := (
<url>http://github.com/fwbrasil/bond</url>
<licenses>
<license>
<name>LGPL</name>
<url>https://raw.githubusercontent.com/fwbrasil/bond/master/LICENSE-LGPL.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:fwbrasil/bond.git</url>
<connection>scm:git:[email protected]:fwbrasil/bond.git</connection>
</scm>
<developers>
<developer>
<id>fwbrasil</id>
<name>Flavio W. Brasil</name>
<url>http://github.com/fwbrasil/</url>
</developer>
</developers>)