aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
blob: e41647e907af47167583a4e17e812ff43035c2c2 (plain) (blame)
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
name := "scalam"

organization := "com.github.jodersky"

version := "1.0-SNAPSHOT"

scalaVersion := "2.10.0-RC1"

// dependency is temporatily explicit (until scala-io provide a scala 2.10 build)
libraryDependencies += "com.jsuereth" % "scala-arm_2.10.0-RC1" %  "1.2"

// dependencies currently removed (until scala-io and breeze-math provide a scala 2.10 build), the libraries are currently unmanaged and contained in lib
//libraryDependencies += "com.github.scala-incubator.io" %% "scala-io-core" % "0.4.1-seq"

//libraryDependencies += "com.github.scala-incubator.io" %% "scala-io-file" % "0.4.1-seq"

//libraryDependencies += "org.scalanlp" %% "breeze-math" % "0.1"

scalacOptions ++= Seq("-deprecation","-feature")

scalacOptions in Compile in doc ++= Seq("-diagrams", "-implicits")

scalacOptions in Compile in doc <++= baseDirectory.map {
  (bd: File) => Seq(
    "-sourcepath",
    bd.getAbsolutePath,
    "-doc-source-url",
    "https://github.com/jodersky/scalam/tree/2.10€{FILE_PATH}.scala"
  )
}