-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
24 lines (18 loc) · 1.1 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
name := "sql-over-ssh-tunnel"
version := "1.0-SNAPSHOT"
organization := "com.charandeepmatta"
scalaVersion := "2.9.2"
resolvers += "Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository"
libraryDependencies ++= Seq(
"com.jcraft" % "jsch" % "0.1.48",
"org.springframework" % "spring-jdbc" % "3.1.2.RELEASE",
"org.springframework" % "spring-beans" % "3.1.2.RELEASE",
"org.springframework" % "spring-core" % "3.1.2.RELEASE",
"org.springframework" % "spring-asm" % "3.1.2.RELEASE",
"org.springframework" % "spring-tx" % "3.1.2.RELEASE",
"org.springframework" % "spring-aop" % "3.1.2.RELEASE",
"org.springframework" % "spring-context" % "3.1.2.RELEASE",
"org.springframework" % "spring-expression" % "3.1.2.RELEASE",
"mysql" % "mysql-connector-java" % "5.1.21"
)
scalacOptions += "-deprecation"