forked from cosminbasca/asciinet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
45 lines (30 loc) · 1.43 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
import AssemblyKeys._
// ---------------------------------------------------------------------------------------------------------------------
//
// assembly setup
//
// ---------------------------------------------------------------------------------------------------------------------
assemblySettings
name := "asciigraph"
version := "0.2.1"
scalaVersion := "2.11.4"
crossScalaVersions := Seq("2.10.4", "2.11.2")
scalacOptions ++= Seq("-optimize", "-Yinline-warnings", "-feature", "-deprecation")
// ---------------------------------------------------------------------------------------------------------------------
//
// build info setup
//
// ---------------------------------------------------------------------------------------------------------------------
buildInfoSettings
sourceGenerators in Compile <+= buildInfo
buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion)
buildInfoPackage := "com.avalanche"
// ---------------------------------------------------------------------------------------------------------------------
//
// dependencies
//
// ---------------------------------------------------------------------------------------------------------------------
libraryDependencies ++= Seq()
libraryDependencies += ("org.scalatest" %% "scalatest" % "2.1.7" % "test")
libraryDependencies += ("com.github.mdr" %% "ascii-graphs" % "0.0.7")
libraryDependencies += ("com.simplehttp" %% "simplehttp" % "0.3.0")