-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
54 lines (39 loc) · 1.29 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
name := "scala-multibase"
version := "0.0.1"
organization := "com.github.fluency03"
organizationName := "fluency03"
organizationHomepage := Some(url("https://github.com/fluency03"))
scalaVersion := "2.12.7"
val scalaTestVersion = "3.0.5"
val testDependencies = Seq(
"org.scalactic" %% "scalactic" % scalaTestVersion,
"org.scalatest" %% "scalatest" % scalaTestVersion % Test
)
libraryDependencies ++= testDependencies
sonatypeProfileName := "com.github.fluency03"
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")
}
scmInfo := Some(
ScmInfo(
url("https://github.com/fluency03/scala-multibase"),
"scm:[email protected]:fluency03/scala-multibase.git"
)
)
developers := List(
Developer(
id = "fluency03",
name = "Chang Liu",
email = "[email protected]",
url = url("https://github.com/fluency03")
)
)
description := "Scala Implementation of Multibase."
licenses := Seq("MIT" -> url("https://raw.githubusercontent.com/fluency03/scala-multibase/master/LICENSE"))
homepage := Some(url("https://github.com/fluency03/scala-multibase"))
pomIncludeRepository := { _ => false }