summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
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")