diff --git a/build.sbt b/build.sbt
index b76c173210ab971ec9e4f94c18cdffca08361536..ca69e7fe9a7332615b10e5a2ee8b4fafbb2039ec 100644
--- a/build.sbt
+++ b/build.sbt
@@ -5,21 +5,25 @@ val emfcommonVersion = "2.12.0"
 val emfecoreVersion = "2.12.0"
 val scoptVersion = "3.7.0"
 val liftVersion = "3.3.0"
+val gsonVersion = "2.8.5"
+val scrollVersion = "1.8"
 
 javacOptions ++= Seq("-encoding", "UTF-8")
 
-lazy val generator = (project in file("."))
+lazy val mjparser = (project in file("."))
   .settings(
-    name := "CodeGenerator",
+    name := "ModelJoinParser",
     version := "0.1",
     scalaVersion := "2.12.6",
     libraryDependencies ++= Seq(
+      "com.github.max-leuthaeuser" %% "scroll" % scrollVersion,
       "org.scala-lang" % "scala-reflect" % scalaVersion.value,
       "org.scala-lang" % "scala-compiler" % scalaVersion.value,
       "org.eclipse.emf" % "org.eclipse.emf.common" % emfcommonVersion,
       "org.eclipse.emf" % "org.eclipse.emf.ecore" % emfecoreVersion,
       "com.github.scopt" %% "scopt" % scoptVersion,
       "net.liftweb" %% "lift-json" % liftVersion,
+      "com.google.code.gson" % "gson" % gsonVersion,
 
       "org.junit.platform" % "junit-platform-runner" % "1.0.0" % "test",
       "org.junit.jupiter" % "junit-jupiter-engine" % "5.0.0" % "test",