Skip to content
Open
Show file tree
Hide file tree
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
24 changes: 12 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
kotlin("plugin.jpa") version "2.4.10"
kotlin("plugin.allopen") version "2.4.10"
id("org.jlleitschuh.gradle.ktlint") version "14.2.0"
id("org.openapi.generator") version "7.0.1"
id("org.openapi.generator") version "7.25.0"
id("org.owasp.dependencycheck") version "13.0.0"
}

Expand Down Expand Up @@ -57,9 +57,9 @@ dependencies {
implementation("tools.jackson.module:jackson-module-kotlin")
implementation("tools.jackson.core:jackson-databind")
implementation("io.github.oshai:kotlin-logging-jvm:8.0.4")
implementation("org.apache.commons:commons-lang3:3.19.0")
implementation("org.mapstruct:mapstruct:1.5.5.Final")
kapt("org.mapstruct:mapstruct-processor:1.5.5.Final")
implementation("org.apache.commons:commons-lang3:3.20.0")
implementation("org.mapstruct:mapstruct:1.6.3")
kapt("org.mapstruct:mapstruct-processor:1.6.3")

// internal libs
implementation("uk.gov.dluhc:logging-library:4.3.0")
Expand All @@ -70,12 +70,12 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-webmvc")
implementation("org.springframework.boot:spring-boot-starter-aspectj")
implementation("io.swagger.core.v3:swagger-annotations:2.2.7")
implementation("io.swagger.core.v3:swagger-annotations:2.2.55")
implementation("org.springframework:spring-webmvc")
implementation("org.springframework.boot:spring-boot-starter-validation")

// UK Government
implementation("uk.gov.service.notify:notifications-java-client:5.2.1-RELEASE")
implementation("uk.gov.service.notify:notifications-java-client:6.2.0-RELEASE")

// Logging
runtimeOnly("net.logstash.logback:logstash-logback-encoder:9.0")
Expand Down Expand Up @@ -103,11 +103,11 @@ dependencies {
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.5")
testImplementation("org.testcontainers:testcontainers:2.0.5")

testImplementation("org.awaitility:awaitility-kotlin:4.2.0")
testImplementation("org.mockito.kotlin:mockito-kotlin:4.1.0")
testImplementation("org.awaitility:awaitility-kotlin:4.3.0")
testImplementation("org.mockito.kotlin:mockito-kotlin:6.3.0")

testImplementation("com.github.tomakehurst:wiremock-jre8-standalone:2.35.1")
testImplementation("net.datafaker:datafaker:1.7.0")
testImplementation("com.github.tomakehurst:wiremock-jre8-standalone:3.0.1")
testImplementation("net.datafaker:datafaker:2.7.0")

testImplementation(platform("software.amazon.awssdk:bom:${property("awsSdkVersion")}"))
testImplementation("software.amazon.awssdk:auth")
Expand All @@ -117,8 +117,8 @@ dependencies {
testImplementation("io.jsonwebtoken:jjwt-impl:0.13.0")
testImplementation("io.jsonwebtoken:jjwt-jackson:0.13.0")
// EROPSPT-733: Jackson v2 packages used by jjwt, should be reviewed if upgrading jjwt-jackson
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.21.6")
testImplementation("com.fasterxml.jackson.core:jackson-core:2.21.6")
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.22.2")
testImplementation("com.fasterxml.jackson.core:jackson-core:2.22.2")
}

kotlin {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
54 changes: 34 additions & 20 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

171 changes: 82 additions & 89 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading