Skip to content

Commit 188ce57

Browse files
authored
dependency update and clean up (#46)
1 parent 7e0f9df commit 188ce57

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.scalafix.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
OrganizeImports {
2+
groups = ["re:javax?\\.", "scala.", "*", "re:com\\.(krux|salesforce)\\."]
3+
removeUnused = true
4+
groupedImports = Merge
5+
}

build.sbt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val slickVersion = "3.3.3"
1+
val slickVersion = "3.4.1"
22

33
val scalaTestArtifact = "org.scalatest" %% "scalatest" % "3.2.+" % Test
44
val prometheusClient = "io.prometheus" % "simpleclient" % "0.16.0"
@@ -7,7 +7,6 @@ val prometheusHotSpot = "io.prometheus" % "simpleclient_hotspot" % "0.16.0"
77

88
lazy val commonSettings = Seq(
99
scalacOptions ++= Seq("-deprecation", "-feature", "-Xlint"), // , "-Xfatal-warnings"),
10-
// fix https://nvd.nist.gov/vuln/detail/CVE-2022-36944
1110
scalaVersion := "2.13.9",
1211
libraryDependencies += scalaTestArtifact,
1312
fork := true,
@@ -36,7 +35,7 @@ lazy val core = (project in file("acdc-core")).
3635
libraryDependencies ++= Seq(
3736
"com.typesafe.slick" %% "slick" % slickVersion,
3837
"com.typesafe.slick" %% "slick-hikaricp" % slickVersion,
39-
"org.postgresql" % "postgresql" % "42.4.+"
38+
"org.postgresql" % "postgresql" % "42.5.0"
4039
)
4140
)
4241

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.6.2
1+
sbt.version=1.7.1

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ThisBuild / version := "0.8.6"
1+
ThisBuild / version := "0.8.7"

0 commit comments

Comments
 (0)