Skip to content

Commit 0805ec1

Browse files
committed
Update dependencies and modernize
1 parent 8dfc45f commit 0805ec1

5 files changed

Lines changed: 12 additions & 10 deletions

File tree

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.5.8
1+
version = 3.5.9
22
runner.dialect = scala3
33
align.preset = most
44
maxColumn = 200

build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ scmInfo := Some(
1111
)
1212
)
1313

14-
scalaVersion := "3.1.3"
14+
scalaVersion := "3.2.0"
1515

1616
mainClass := Some("fr.janalyse.cem.Main")
1717

1818
lazy val versions = new {
19-
val sttp = "3.7.1"
20-
val zio = "2.0.0"
19+
val sttp = "3.8.2"
20+
val zio = "2.0.2"
2121
val zionio = "2.0.0"
2222
val zioproc = "0.7.1"
23-
val zioconfig = "3.0.1"
24-
val ziologging = "2.0.1"
23+
val zioconfig = "3.0.2"
24+
val ziologging = "2.1.2"
2525
val naturalsort = "1.0.1"
26-
val jgit = "6.2.0.202206071550-r"
27-
val logback = "1.2.11"
26+
val jgit = "6.3.0.202209071007-r"
27+
val logback = "1.4.3"
2828
}
2929

3030
libraryDependencies ++= Seq(

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# suppress inspection "UnusedProperty" for whole file
2-
sbt.version=1.7.1
2+
sbt.version=1.7.2

project/plugins.sbt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
22
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
33
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")
44
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
5+
//addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.11")
56
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.9")
7+
//addSbtPlugin("com.typesafe.play" % "sbt-twirl" % "1.6.0-M7")
68
addSbtPlugin("com.typesafe.play" % "sbt-twirl" % "1.6.0-M6")

src/main/scala/fr/janalyse/cem/Execute.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ object Execute {
106106
runState = runState
107107
)
108108

109-
result
109+
ZIO.logAnnotate("file",example.filename)(result)
110110
}
111111

112112
def runTestableExamples(examples: List[CodeExample]) = {

0 commit comments

Comments
 (0)