From eba459da9678ddcad9bd128d818ea669ea05ed25 Mon Sep 17 00:00:00 2001 From: Chrissi <christopher@hbsc-werner.de> Date: Wed, 31 Jul 2019 13:06:40 +0200 Subject: [PATCH] update build.sbt --- build.sbt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index b76c173..ca69e7f 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", -- GitLab