From aacba97c7062f9fd1b4a79f828967da61f13e9b9 Mon Sep 17 00:00:00 2001 From: "AlexB.02" Date: Fri, 16 Sep 2022 17:47:02 +0100 Subject: [PATCH] build: add library dependencies & build make target --- .scalafmt.conf | 2 ++ Makefile | 2 ++ build.sbt | 2 ++ 3 files changed, 6 insertions(+) create mode 100644 .scalafmt.conf create mode 100644 Makefile diff --git a/.scalafmt.conf b/.scalafmt.conf new file mode 100644 index 0000000..a313492 --- /dev/null +++ b/.scalafmt.conf @@ -0,0 +1,2 @@ +version = "3.5.3" +runner.dialect = scala213 \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..97b1713 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +build: + sbt assembly \ No newline at end of file diff --git a/build.sbt b/build.sbt index 73a1c6c..963b634 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,7 @@ ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation") +libraryDependencies += "com.github.j-mie6" %% "parsley" % "3.3.10" +libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.13" % "test" lazy val root = (project in file(".")).settings( name := "Pseudo Tools Project",