forked from bssstudio/scala-phpSerData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.scala
28 lines (25 loc) · 778 Bytes
/
Build.scala
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
import sbt._
import sbt.Keys._
object PhpSerDataBuild extends Build {
val baseSettings = Project.defaultSettings ++ Seq(
scalaVersion := "2.10.0",
scalacOptions ++= Seq("-feature", "-deprecation")
)
lazy val common = Project(
id = "phpSerData",
base = file("."),
settings = baseSettings ++ Seq(
name := "phpSerData",
organization := "si.bss.tools.phpSerData",
version := "0.1-SNAPSHOT",
initialCommands in console := "import si.bss.tools.phpSerData._",
resolvers ++= Seq(
"Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases"
),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "1.9.1" % "test",
"commons-lang" % "commons-lang" % "2.6"
)
)
)
}