-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 lines (27 loc) · 1.14 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
name := "fp-lib-design"
version := "0.1"
scalaVersion := "2.13.6"
val jmsV = "2.0.1"
val ibmMQV = "9.2.0.1"
val activeMQV = "2.15.0"
val catsEffectV = "3.2.9"
val fs2V = "3.0.6"
val log4jSlf4jImplV = "2.13.3"
val scalaTestV = "3.2.0"
val kindProjectorV = "0.11.0"
val betterMonadicForV = "0.3.1"
val log4catsV = "2.1.1"
val keyPoolV = "0.4.7"
scalafmtOnCompile := true
fork in run := true
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % betterMonadicForV)
libraryDependencies ++= Seq(
"com.ibm.mq" % "com.ibm.mq.allclient" % ibmMQV,
"org.apache.activemq" % "artemis-jms-client-all" % activeMQV,
"javax.jms" % "javax.jms-api" % jmsV,
"org.apache.logging.log4j" % "log4j-slf4j-impl" % log4jSlf4jImplV % Runtime,
"org.typelevel" %% "cats-effect" % catsEffectV,
"org.typelevel" %% "keypool" % keyPoolV,
"co.fs2" %% "fs2-core" % fs2V,
"org.typelevel" %% "log4cats-slf4j" % log4catsV
)