Skip to content

Commit

Permalink
build: add library dependencies & build make target
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexB02 committed Sep 16, 2022
1 parent 13558f1 commit aacba97
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version = "3.5.3"
runner.dialect = scala213
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build:
sbt assembly
2 changes: 2 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit aacba97

Please sign in to comment.