Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ lazy val root = (project in file("."))
scalaBinaryVersion := "2.13",
javacOptions ++= Seq("-source", "11", "-target", "11"),
scalacOptions ++= Seq("-deprecation"),
scalafmtOnCompile := true,
useCoursier := false
scalafmtOnCompile := true
)
.settings(
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# suppress inspection "UnusedProperty" for whole file
sbt.version=1.12.13
sbt.version=2.0.3
6 changes: 5 additions & 1 deletion scripts/test-sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@
echo "+----------------------------+"
echo "| Executing tests using sbt |"
echo "+----------------------------+"
sbt ++$TRAVIS_SCALA_VERSION test
if [[ -n "${TRAVIS_SCALA_VERSION:-}" ]]; then
sbt "++$TRAVIS_SCALA_VERSION ; test"
else
sbt test
fi
Loading