Last active
March 17, 2024 07:44
-
-
Save mtavkhelidze/90ce7382edbbbd146668fa45fab5a1ed to your computer and use it in GitHub Desktop.
Dot build.sbt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ThisBuild / version := "0.1.0-SNAPSHOT" | |
ThisBuild / scalaVersion := "3.4.0" | |
lazy val fpsCode = (project in file(".")) | |
.settings( | |
name := "fps-code", | |
idePackagePrefix := Some("ge.zgharbi.study.fps"), | |
libraryDependencies ++= Seq( | |
"org.scalameta" %% "munit" % "0.7.29" % Test, | |
), | |
) | |
Global / onChangedBuildSource := ReloadOnSourceChanges | |
Global / excludeLintKeys += idePackagePrefix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment