-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
24 lines (22 loc) · 810 Bytes
/
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
import sbt._
import Keys._
scalafmtOnCompile in ThisBuild := true
publishMavenStyle := true
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
lazy val root: Project = project
.in(file("."))
.settings(
name := "bq_column_sizes",
organization := "com.github.Kayrnt",
version := "1.0.0-SNAPSHOT",
scalaVersion := "2.13.6",
libraryDependencies ++= Seq(
"com.github.alexarchambault" %% "case-app" % "2.1.0-M3",
"com.google.cloud" % "google-cloud-bigquery" % "1.137.0",
"org.typelevel" %% "cats-effect" % "3.0.0",
"com.github.tototoshi" %% "scala-csv" % "1.3.7",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.3",
"org.scalatest" %% "scalatest" % "3.2.2" % "test"
)
)