-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
43 lines (38 loc) · 1.33 KB
/
build.sbt
File metadata and controls
43 lines (38 loc) · 1.33 KB
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
name := "squire"
organization := "org.jrj-d"
scalaVersion := "2.12.3"
libraryDependencies ++= Seq(
// other dependencies here
"org.scalanlp" %% "breeze" % "0.13.2",
// native libraries are not included by default. add this if you want them (as of 0.7)
// native libraries greatly improve performance, but increase jar sizes.
"org.scalanlp" %% "breeze-natives" % "0.13.2",
"org.scalatest" % "scalatest_2.12" % "3.0.4" % "test",
"ch.qos.logback" % "logback-classic" % "1.1.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.7.2"
)
resolvers ++= Seq(
// other resolvers here
"Sonatype Releases" at "https://oss.sonatype.org/content/repositories/releases/"
)
//// scalastyle for main code
//
//lazy val compileScalaStyle = taskKey[Unit]("compileScalaStyle")
//
//compileScalaStyle := {
// scalastyle.in(Compile).toTask("").value
//}
//
//(compile in Compile) := ((compile in Compile) dependsOn compileScalaStyle).value
//
//// scalastyle for tests
//
//(scalastyleConfig in Test) := baseDirectory.value / "scalastyle-test-config.xml"
//
//lazy val testScalaStyle = taskKey[Unit]("testScalaStyle")
//
//testScalaStyle := {
// scalastyle.in(Test).toTask("").value
//}
//
//(test in Test) := ((test in Test) dependsOn testScalaStyle).value