-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.sbt
33 lines (19 loc) · 868 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
25
26
27
28
29
30
31
32
33
name := "scalikejdbc-bigquery"
organization := "com.mayreh"
licenses += (("Apache-2.0", url("https://raw.githubusercontent.com/ocadaruma/scalikejdbc-bigquery/master/LICENSE")))
version := "0.1.5-SNAPSHOT"
publishMavenStyle := true
val scala212 = "2.12.10"
scalaVersion := scala212
crossScalaVersions := Seq("2.11.12", scala212, "2.13.1")
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
configs(IntegrationTest)
inConfig(IntegrationTest)(Defaults.itSettings)
val scalikejdbcVersion = "3.4.1"
val googleCloudVersion = "1.108.1"
libraryDependencies ++= Seq(
"org.scalikejdbc" %% "scalikejdbc" % scalikejdbcVersion % "provided,it,test",
"com.google.cloud" % "google-cloud-bigquery" % googleCloudVersion % "provided,it,test",
"org.scalatest" %% "scalatest" % "3.1.1" % "it,test",
"org.scalamock" %% "scalamock" % "4.4.0" % "it,test"
)