Skip to content

Commit

Permalink
tested with postgreql 17
Browse files Browse the repository at this point in the history
  • Loading branch information
hohonuuli committed Nov 9, 2024
1 parent f04e77c commit cdf2963
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import org.testcontainers.containers.{JdbcDatabaseContainerProvider, PostgreSQLC

object PostgresEntityManagerFactoryProvider extends EntityManagerFactoryProvider {

val container = new PostgreSQLContainer("postgres:16")
val container = new PostgreSQLContainer("postgres:17")
container.withInitScript("sql/02_m3_kb.sql")
container.withReuse(true)
container.start()
Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ object Dependencies {
lazy val helidonEncodingDeflate = "io.helidon.http.encoding" % "helidon-http-encoding-deflate" % helidonVersion
lazy val helidonEncodingGzip = "io.helidon.http.encoding" % "helidon-http-encoding-gzip" % helidonVersion

val hibernateVersion = "6.6.1.Final"
val hibernateVersion = "6.6.2.Final"
lazy val hibernateCore = "org.hibernate.orm" % "hibernate-core" % hibernateVersion
lazy val hibernateJCache = "org.hibernate" % "hibernate-jcache" % hibernateVersion
lazy val hibernateEnvers = "org.hibernate.orm" % "hibernate-envers" % hibernateVersion
lazy val hibernateHikari = "org.hibernate.orm" % "hibernate-hikaricp" % hibernateVersion

lazy val hikariCp = "com.zaxxer" % "HikariCP" % "6.0.0"
lazy val hikariCp = "com.zaxxer" % "HikariCP" % "6.1.0"
lazy val jansi = "org.fusesource.jansi" % "jansi" % "2.4.1"
lazy val jaspyt = "org.jasypt" % "jasypt" % "1.9.3"
lazy val junit = "junit" % "junit" % "4.13.2"
Expand All @@ -42,7 +42,7 @@ object Dependencies {
lazy val slf4jJulBridge = "org.slf4j" % "jul-to-slf4j" % slf4jVersion
lazy val slf4jSystem = "org.slf4j" % "slf4j-jdk-platform-logging" % slf4jVersion

private val tapirVersion = "1.11.7"
private val tapirVersion = "1.11.8"
lazy val tapirCirce = "com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion
lazy val tapirHelidon = "com.softwaremill.sttp.tapir" %% "tapir-nima-server" % tapirVersion
lazy val tapirPrometheus = "com.softwaremill.sttp.tapir" %% "tapir-prometheus-metrics" % tapirVersion
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.4
sbt.version=1.10.5

0 comments on commit cdf2963

Please sign in to comment.