-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
40 lines (31 loc) · 1.11 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import Dependencies._
ThisBuild / scalaVersion := "2.13.8"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "org.renci"
ThisBuild / organizationName := "RENCI"
// Scalafix binary configuration
ThisBuild / scalafixScalaBinaryVersion := CrossVersion.binaryScalaVersion(scalaVersion.value)
lazy val root = (project in file("."))
.settings(
name := "BabelValidator",
// Scalafix options
semanticdbEnabled := true,
semanticdbVersion := scalafixSemanticdb.revision,
// Scalac options
scalacOptions ++= Seq(
"-Ywarn-unused",
"-deprecation"
),
// Dependencies
libraryDependencies += scallop,
libraryDependencies += scalaLogging,
libraryDependencies += logback,
libraryDependencies += zio,
libraryDependencies += zioStreams,
libraryDependencies += zioJson,
// Test dependencies
libraryDependencies += scalaTest % Test,
// Test settings.
Test / logBuffered := false // Allows scalatest to do a better job with the output.
)
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.