-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
41 lines (28 loc) · 1.18 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
name := """website"""
organization := "banana4life"
version := "1.0"
lazy val root = (project in file("."))
.enablePlugins(PlayScala)
scalaVersion := "3.6.1"
routesGenerator := InjectedRoutesGenerator
libraryDependencies ++= Seq(
caffeine,
ws,
specs2 % Test,
"com.tumblr" % "jumblr" % "0.0.13",
"com.google.apis" % "google-api-services-youtube" % "v3-rev20230822-2.0.0",
"gov.sandia.foundry" % "porter-stemmer" % "1.4",
"com.vladsch.flexmark" % "flexmark-all" % "0.64.8",
"org.webjars" % "font-awesome" % "5.15.4",
)
Compile / doc / sources := Seq.empty
// Compile / unmanagedResources / excludeFilter := new SimpleFileFilter(_.getName == "local.conf")
Compile / packageDoc / publishArtifact := false
Assets / pipelineStages := Seq(digest, gzip)
jibBaseImage := "docker.io/library/eclipse-temurin:21-jre-alpine"
jibRegistry := "ghcr.io"
jibOrganization := "banana4life"
jibName := "website"
jibMappings := (Assets / mappings).value
.map { case (source, target) => (source, (Assets / WebKeys.packagePrefix).value + target) }
jibJvmFlags := "-Dplay.server.pidfile.path=/dev/null" :: Nil