-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
33 lines (27 loc) · 1.13 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
name := "advent-of-code"
organization := "velocorner.com"
version := "1.0.0"
scalaVersion := "3.3.1"
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-explain",
"-explain-types"
)
libraryDependencies += "com.github.simerplaha" % "slack3d_2.13" % "0.1.0" withSources () withJavadoc ()
libraryDependencies += "org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4"
//libraryDependencies += "org.typelevel" %% "cats-effect" % "3.4.2" withSources () withJavadoc ()
onLoadMessage := Def.setting {
import scala.Console._
def green(text: String): String = s"$GREEN$text$RESET"
s"""|${green(""" """)}
|${green(""" """)}
|${green(""" _==_ _ """)}
|${green(""" _,(",)|_| """)}
|${green(""" ( . \-| """)}
|${green(""" _( : )|_ """)}
|${green(""" """)}
|${green(""" """ + version.value)}
|
""".stripMargin
}.value