-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
30 lines (24 loc) · 848 Bytes
/
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
name := "sqlsync"
version := "1.0-SNAPSHOT"
resolvers ++= Seq(
"Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"FLECT Maven Repository on Github" at "http://flect.github.io/maven-repo/"
)
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.1"
libraryDependencies ++= Seq(
ws,
jdbc,
anorm,
cache,
"com.novus" %% "salat" % "1.9.9",
"org.postgresql" % "postgresql" % "9.3-1102-jdbc41",
"com.google.code.gson" % "gson" % "2.3.1",
"se.radley" %% "play-plugins-salat" % "1.5.0",
"org.apache.velocity" % "velocity" % "1.7",
"log4j" % "log4j" % "1.2.17",
"commons-lang" % "commons-lang" % "2.6",
"org.apache.httpcomponents" % "httpclient" % "4.3.5",
"jp.co.flect" % "flectSalesforce" % "1.2.1"
)
scalacOptions += "-feature"