-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
52 lines (38 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
47
48
49
50
51
52
name := "YahooFinanceHistoryFetcher"
organization := "com.github.fsw0422"
version := "0.2.0"
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT"))
homepage := Some(url("http://github.com/fsw0422"))
publishTo := Some(if (isSnapshot.value) {
Opts.resolver.sonatypeSnapshots
} else {
Opts.resolver.sonatypeStaging
})
publishMavenStyle := true
scmInfo := Some(
ScmInfo(
url("https://github.com/fsw0422/yahoo-finance-history-fetcher"),
"scm:[email protected]:fsw0422/yahoo-finance-history-fetcher.git"
)
)
developers := List(
Developer(
id = "fsw0422",
name = "Kevin Kwon",
email = "[email protected]",
url = url("http://github.com/fsw0422")
)
)
scalaVersion := "2.12.3"
crossScalaVersions := Seq("2.11.11")
lazy val slf4jVersion = "1.7.26"
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "1.3.1",
"com.typesafe.play" %% "play-ahc-ws-standalone" % "2.0.0-M4",
"org.slf4j" % "slf4j-api" % slf4jVersion % Test,
"org.slf4j" % "slf4j-log4j12" % slf4jVersion % Test,
"org.scalatest" %% "scalatest" % "3.1.0-RC1" % Test,
"org.scalacheck" %% "scalacheck" % "1.14.0" % Test
)
publishArtifact in Test := false
lazy val YahooFinanceHistoryFetcher = project in file(".")