-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.sbt
46 lines (31 loc) · 1.21 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
organization := "me.lessis"
name := "base64"
version := "0.2.1"
licenses := Seq(
("MIT", url(s"https://github.com/softprops/${name.value}/blob/${version.value}/LICENSE")))
homepage := Some(url(s"https://github.com/softprops/${name.value}/#readme"))
scalacOptions += Opts.compile.deprecation
crossScalaVersions := Seq("2.10.4", "2.11.5", "2.12.1")
scalaVersion := crossScalaVersions.value.last
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
"commons-codec" % "commons-codec" % "1.9" % "test",
"io.netty" % "netty-codec" % "4.0.23.Final" % "test")
bintraySettings
bintray.Keys.packageLabels in bintray.Keys.bintray := Seq("base64", "encoding", "rfc4648")
lsSettings
LsKeys.tags in LsKeys.lsync := (bintray.Keys.packageLabels in bintray.Keys.bintray).value
externalResolvers in LsKeys.lsync := (resolvers in bintray.Keys.bintray).value
cappiSettings
pomExtra := (
<scm>
<url>[email protected]:softprops/{name.value}.git</url>
<connection>scm:git:[email protected]:softprops/{name.value}.git</connection>
</scm>
<developers>
<developer>
<id>softprops</id>
<name>Doug Tangren</name>
<url>https://github.com/softprops</url>
</developer>
</developers>)