This repository has been archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
56 lines (48 loc) · 2.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name := """lunatech-lunch-planner"""
version := "1.0-SNAPSHOT"
scalaVersion := "2.13.11"
lazy val root = (project in file("."))
.enablePlugins(PlayScala)
.settings(
Test / javaOptions += "-Dconfig.file=conf/application-test.conf",
Test / testOptions += Tests
.Argument(TestFrameworks.ScalaCheck, "-verbosity", "1"),
Test / parallelExecution := false,
Test / fork := true
)
libraryDependencies ++= Seq(
ehcache,
ws,
evolutions,
"com.lunatech" %% "play-googleopenconnect" % "2.9.2",
"com.typesafe.play" %% "play-json" % "2.9.4",
"com.typesafe.play" %% "play-slick" % "5.1.0", // 2019
"com.typesafe.play" %% "play-slick-evolutions" % "5.1.0", // 2019
"com.typesafe.slick" %% "slick-hikaricp" % "3.4.1", // 2020
"org.postgresql" % "postgresql" % "42.6.0",
"com.adrianhurt" %% "play-bootstrap" % "1.6.1-P28-B4",
"org.scalaz" %% "scalaz-core" % "7.4.0-M13",
"org.apache.poi" % "poi-ooxml" % "5.2.3",
"com.enragedginger" %% "akka-quartz-scheduler" % "1.9.3-akka-2.6.x",
"com.typesafe.play" %% "play-mailer" % "8.0.1",
"com.typesafe.play" %% "play-mailer-guice" % "8.0.1",
"com.newrelic.logging" % "logback" % "2.6.0",
"org.apache.logging.log4j" % "log4j-core" % "2.20.0",
"org.scalamock" %% "scalamock" % "5.2.0" % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % Test,
"org.scalatestplus" %% "scalacheck-1-15" % "3.2.11.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.17.0" % Test,
"io.github.wolfendale" %% "scalacheck-gen-regexp" % "1.1.0" % Test,
"com.h2database" % "h2" % "2.1.214" % Test
)
ThisBuild / libraryDependencySchemes ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always
)
githubOwner := "lunatech-labs"
githubRepository := "lunatech-lunch-planner"
githubTokenSource := TokenSource.Environment("GITHUB_TOKEN") || TokenSource
.GitConfig("github.token")
resolvers += Resolver.githubPackages("lunatech-labs")
addCommandAlias("validate", ";scalafmt;coverage;test;dependencyCheck")
addCommandAlias("testCoverage", ";coverage;test;coverageReport")
Global / onChangedBuildSource := IgnoreSourceChanges