Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies #359

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,33 @@
group = "no.nav.syfo"
version = "1.0.0"

val confluentVersion = "7.5.1"
val confluentVersion = "7.6.1"
val dialogmeldingVersion = "1.5d21db9"
val fellesformat2Version = "1.0329dd1"
val flywayVersion = "9.22.3"
val flywayVersion = "10.17.3"
val hikariVersion = "5.1.0"
val jacksonVersion = "2.16.1"
val jacksonVersion = "2.17.2"
val jaxbVersion = "2.3.1"
val jsonVersion = "20231013"
val kafkaVersion = "3.6.1"
val jsonVersion = "20240303"
val kafkaVersion = "3.7.0"
val kithApprecVersion = "2019.07.30-04-23-2a0d1388209441ec05d2e92a821eed4f796a3ae2"
val kithHodemeldingVersion = "2019.07.30-12-26-5c924ef4f04022bbb850aaf299eb8e4464c1ca6a"
val kluentVersion = "1.73"
val ktorVersion = "2.3.8"
val logbackVersion = "1.4.14"
val ktorVersion = "2.3.12"
val logbackVersion = "1.5.6"
val logstashEncoderVersion = "7.4"
val micrometerRegistryVersion = "1.12.2"
val micrometerRegistryVersion = "1.12.7"
val mockkVersion = "1.13.9"
val mqVersion = "9.3.4.1"
val nimbusjosejwtVersion = "9.37.3"
val postgresVersion = "42.7.2"
val postgresEmbeddedVersion = "2.0.6"
val nimbusjosejwtVersion = "9.40"
val postgresVersion = "42.7.4"
val postgresEmbeddedVersion = "2.0.7"
val spekVersion = "2.0.19"
val syfotjenesterVersion = "1.2021.06.09-13.09-b3d30de9996e"

plugins {
kotlin("jvm") version "2.0.20"
id("com.gradleup.shadow") version "8.3.0"
id("com.gradleup.shadow") version "8.3.2"
id("org.jlleitschuh.gradle.ktlint") version "11.4.2"
}

Expand Down Expand Up @@ -107,7 +107,7 @@ dependencies {
}

// Database
implementation("org.flywaydb:flyway-core:$flywayVersion")
implementation("org.flywaydb:flyway-database-postgresql:$flywayVersion")
implementation("com.zaxxer:HikariCP:$hikariVersion")
implementation("org.postgresql:postgresql:$postgresVersion")
testImplementation("io.zonky.test:embedded-postgres:$postgresEmbeddedVersion")
Expand Down Expand Up @@ -141,6 +141,7 @@ tasks {
}

shadowJar {
mergeServiceFiles()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://stackoverflow.com/questions/32887966/shadow-plugin-gradle-what-does-mergeservicefiles-do, er det noe vi har hatt problemer med?

Det er anbefalt å legge til dette med Flyway 10. Se diskusjon her feks: flyway/flyway#3811

archiveBaseName.set("app")
archiveClassifier.set("")
archiveVersion.set("")
Expand Down