forked from dmurvihill/courier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (19 loc) · 797 Bytes
/
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
organization := "me.lessis"
name := "courier"
version := "0.1.2"
description := "deliver electronic mail with scala"
libraryDependencies ++= Seq(
"javax.mail" % "mail" % "1.4.7",
"javax.activation" % "activation" % "1.1.1"
)
licenses := Seq(
("MIT", url("https://github.com/softprops/%s/blob/%s/LICENSE"
.format(name.value,version.value))))
homepage := Some(url("https://github.com/softprops/%s/#readme".format(name.value)))
scalaVersion := "2.10.2"
crossScalaVersions := Seq("2.9.3", "2.10.2")
seq(bintraySettings:_*)
bintray.Keys.packageLabels in bintray.Keys.bintray := Seq("email", "mail")
seq(lsSettings:_*)
(LsKeys.tags in LsKeys.lsync) := Seq("email", "mail")
(externalResolvers in LsKeys.lsync) := (resolvers in bintray.Keys.bintray).value