forked from imperialft/squantlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
59 lines (43 loc) · 1.68 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
57
58
59
//import AssemblyKeys._
//assemblySettings
assemblyJarName in assembly := "squantlib.jar"
test in assembly := {}
name := "squantlib"
organization := "net.squantlib"
version := "0.1.0"
scalaVersion := "2.12.4"
libraryDependencies ++= Seq(
"com.mchange" % "c3p0" % "0.9.2.1", // % "provided",
"org.squeryl" %% "squeryl" % "0.9.9",
"org.apache.commons" % "commons-lang3" % "3.7",
"org.apache.commons" % "commons-math3" % "3.6.1",
"com.google.gdata" % "core" % "1.47.1" % "provided",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.7",
//"org.codehaus.jackson" % "jackson-mapper-asl" % "1.9.10" % "provided",
"org.squeryl" %% "squeryl" % "0.9.9",
"com.mchange" % "mchange-commons-java" % "0.2.3.4", // % "provided",
"org.jfree" % "jcommon" % "1.0.24" % "provided",
"org.jfree" % "jfreechart" % "1.0.14" % "provided",
"mysql" % "mysql-connector-java" % "5.1.30",
// "io.airbrake" % "javabrake" % "0.1.6",
"io.airbrake" % "javabrake" % "0.3.0",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0", // % "provided",
"ch.qos.logback" % "logback-classic" % "1.2.3" // % "provided"
)
scalacOptions ++= Seq(
"-deprecation",
// "-feature",
// "-unchecked",
// "-Xlint",
"-Ywarn-dead-code"
// "-Xlog-implicits"
//"-Ywarn-numeric-widen",
//"-Ywarn-value-discard"
)
classDirectory in Compile := baseDirectory.value / "target" / "classes"
initialCommands := "import net.squantlib._"
retrieveManaged := false
//lazy val jquantlib = RootProject(file(sys.env.get("JQUANTLIB_HOME").getOrElse("../jquantlib")))
lazy val squantlib = Project(id = "squantlib", base = file(".")) //.dependsOn(jquantlib)
sources in (Compile,doc) := Seq.empty
publishArtifact in (Compile, packageDoc) := false