-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·29 lines (19 loc) · 912 Bytes
/
build.sbt
File metadata and controls
executable file
·29 lines (19 loc) · 912 Bytes
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
name := "siigna-main"
version := "stable"
organization := "com.siigna"
scalaVersion := "2.10.0"
crossScalaVersions := Seq("2.10.0", "2.9.2")
mainClass in (run) := Some("com.siigna.app.SiignaApplication")
mainClass in (Compile, packageBin) := Some("com.siigna.app.SiignaApplication")
publishTo := Some(Resolver.sftp("Siigna rls", "80.71.132.98", 12022, "/var/www/public_html") as ("www-data", new File("../budapest/jenkins.rsa")))
resolvers += "Siigna" at "http://rls.siigna.com"
fork in run := true // Do this. All day everyday
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-actors" % "2.10.0",
"org.scala-lang" % "scala-library" % "2.10.0",
"org.scala-lang" % "scala-reflect" % "2.10.0",
"org.scalatest" %% "scalatest" % "1.9.1" % "test",
"junit" % "junit" % "4.11" % "test",
"com.itextpdf" % "itextpdf" % "5.4.2" % "runtime",
"com.itextpdf" % "itextpdf" % "5.4.2" % "compile"
)