forked from qntnet/qnt-scala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
56 lines (42 loc) · 1.81 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
55
56
name := "qnt-scala"
homepage := Some(url("https://github.com/qntnet/qnt-scala"))
startYear := Some(2020)
licenses += "MIT" -> url("https://opensource.org/licenses/MIT")
description := "Library for investing strategies development on quantnet.ai"
organization := "ai.quantnet"
organizationName := "QuantNet, LLC."
organizationHomepage := Some(url("http://quantnet.ai"))
scmInfo := Some(
ScmInfo(
url("https://github.com/qntnet/qnt-scala"),
"scm:[email protected]:qntnet/qnt-scala.git"
)
)
developers := List(
Developer(
id = "dgolovin.quantnet",
name = "Dmitry Golovin",
email = "[email protected]",
url = url("http://github.com/quantnet-golovin")
)
)
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")
}
publishConfiguration := publishConfiguration.value.withOverwrite(true)
publishLocalConfiguration := publishLocalConfiguration.value.withOverwrite(true)
version := "0.12"
scalaVersion := "2.13.1"
libraryDependencies += "org.slf4j" % "slf4j-simple" % "1.7.5"
resolvers += "Unidata" at "https://artifacts.unidata.ucar.edu/repository/unidata-all"
libraryDependencies += "edu.ucar" % "netcdf" % "4.3.22"
// resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.10.1"
libraryDependencies += "org.scalanlp" %% "breeze" % "1.0"
//libraryDependencies += "org.scalanlp" %% "breeze-natives" % "1.0"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.8" % "test"
libraryDependencies += "commons-io" % "commons-io" % "2.6"
javacOptions ++= Seq("-source", "1.8", "-target", "1.8")