summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-08-14 01:02:48 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2012-08-14 01:02:48 +0200
commitd5a8420694bc9f5b269f46097829d3178e116923 (patch)
tree9d21cf08ef3cd73f43fb79128af5afa4dd122328 /build.sbt
downloadimap-to-db-d5a8420694bc9f5b269f46097829d3178e116923.tar.gz
imap-to-db-d5a8420694bc9f5b269f46097829d3178e116923.tar.bz2
imap-to-db-d5a8420694bc9f5b269f46097829d3178e116923.tar.xz
imap-to-db-d5a8420694bc9f5b269f46097829d3178e116923.zip
o Initial import.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt21
1 files changed, 21 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..d51170c
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,21 @@
+import AssemblyKeys._
+
+assemblySettings
+
+organization := "io.trygvis.imap-to-db"
+
+name := "imap-to-db"
+
+scalaVersion := "2.9.1"
+
+libraryDependencies ++= Seq(
+ "org.constretto" % "constretto-core" % "2.0.1",
+ "ch.qos.logback" % "logback-core" % "1.0.6",
+ "org.slf4j" % "slf4j-log4j12" % "1.6.1",
+ "javax.mail" % "mail" % "1.4.5",
+ "postgresql" % "postgresql" % "9.1-901-1.jdbc4",
+ "commons-io" % "commons-io" % "2.2",
+ "commons-net" % "commons-net" % "3.1"
+)
+
+mainClass in assembly := Some("ImapToDb")