-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.sbt
40 lines (34 loc) · 1.09 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
enablePlugins(JmhPlugin)
inThisBuild(List(
sonatypeProfileName := "org.virtuslab",
organization := "org.virtuslab",
homepage := Some(url("https://github.com/VirtusLab/pretty-stacktraces")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer(
"BarkingBad",
"Andrzej Ratajczak",
"andrzej.ratajczak98@gmail.com",
url("https://twitter.com/aj_ratajczak")
),
Developer(
"romanowski",
"Krzysztof Romanowski",
"kromanowski@virtuslab.com",
url("https://twitter.com/RomanowskiKr")
)
)
))
ThisBuild / parallelExecution := false
Global / excludeLintKeys += ThisBuild / organization
val scala3Version = "3.1.3-RC2"
lazy val root = project
.in(file("."))
.enablePlugins(JmhPlugin)
.settings(
organization := "org.virtuslab",
name := "pretty-stacktraces",
scalaVersion := scala3Version,
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test",
libraryDependencies += "org.scala-lang" %% "scala3-tasty-inspector" % scalaVersion.value,
)