-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (22 loc) · 1.15 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
import Dependencies._
ThisBuild / scalaVersion := "2.13.1"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.example"
ThisBuild / organizationName := "example"
val zioVersion = "1.0.0-RC18-2"
lazy val root = (project in file("."))
.settings(
name := "Git in Scala",
libraryDependencies += scalaTest % Test,
libraryDependencies += "dev.zio" %% "zio" % zioVersion,
libraryDependencies += "dev.zio" %% "zio-streams" % zioVersion,
libraryDependencies += "dev.zio" %% "zio-test" % zioVersion % "test",
libraryDependencies += "dev.zio" %% "zio-test-sbt" % zioVersion % "test",
libraryDependencies += "org.typelevel" %% "cats-core" % "2.0.0",
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.14.1" % "test",
libraryDependencies += "com.github.scopt" %% "scopt" % "4.0.0-RC2",
libraryDependencies += "org.mockito" % "mockito-core" % "2.7.19" % Test,
libraryDependencies += "org.mockito" %% "mockito-scala" % "1.14.3",
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
)
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.