-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
35 lines (30 loc) · 886 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
34
35
import com.scalapenos.sbt.prompt.SbtPrompt.autoImport._
import com.scalapenos.sbt.prompt._
import Dependencies._
ThisBuild / scalaVersion := "2.13.0"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "io.github"
ThisBuild / organizationName := "gvolpe"
lazy val root = (project in file("."))
.settings(
name := "gvolpe-bot",
scalafmtOnCompile := true,
libraryDependencies ++= Seq(
compilerPlugin(Libraries.bm4),
Libraries.cats,
Libraries.catsEffect,
Libraries.canoe,
Libraries.fs2Core,
Libraries.http4sDsl,
Libraries.http4sServer,
Libraries.logback % "runtime"
)
)
promptTheme := PromptTheme(
List(
text("[sbt] ", fg(105)),
text(_ => "gvolpe-bot", fg(15)).padRight(" λ ")
)
)
addCompilerPlugin("org.scalameta" % "semanticdb-scalac_2.13.0" % "4.2.0")
enablePlugins(JavaAppPackaging)