Skip to content

Commit

Permalink
Merge pull request #23 from OSGP/feature/FDP-2665-dependency-updates
Browse files Browse the repository at this point in the history
Feature/fdp 2665 dependency updates
  • Loading branch information
smvdheijden authored Oct 9, 2024
2 parents 1146ce0 + e9d2116 commit 5024032
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
16 changes: 10 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.net.URI

plugins {
id("io.spring.dependency-management") version "1.1.5" apply false
kotlin("jvm") version "2.0.0" apply false
kotlin("plugin.spring") version "2.0.0" apply false
id("org.sonarqube") version "5.0.0.4638"
id("io.spring.dependency-management") version "1.1.6" apply false
kotlin("jvm") version "2.0.20" apply false
kotlin("plugin.spring") version "2.0.20" apply false
id("org.sonarqube") version "5.1.0.4882"
id("com.diffplug.spotless") version("6.25.0")
}

Expand Down Expand Up @@ -45,7 +45,7 @@ subprojects {

extensions.configure<StandardDependencyManagementExtension> {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:3.3.1")
mavenBom("org.springframework.boot:spring-boot-dependencies:3.3.4")
}
}

Expand All @@ -63,7 +63,6 @@ subprojects {
}
}


extensions.configure<SpotlessExtension> {
kotlin {
// by default the target is every '.kt' and '.kts' file in the java source sets
Expand Down Expand Up @@ -96,6 +95,11 @@ subprojects {
}
}

tasks.register<DependencyReportTask>("dependenciesAll"){
description = "Displays all dependencies declared in all sub projects"
group = "help"
}

tasks.withType<Test> {
useJUnitPlatform()
}
Expand Down
7 changes: 6 additions & 1 deletion oauth-token-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ testing {
dependencies {
implementation(project())
implementation("org.springframework.boot:spring-boot-starter-test")
implementation(testLibs.mockServer)
implementation(testLibs.mockServer) {
// CVE fixes
exclude(group = "org.bouncycastle", module = "bcpkix-jdk18on")
exclude(group = "org.bouncycastle", module = "bcprov-jdk18on")
exclude(group = "org.bouncycastle", module = "bcutil-jdk18on")
}
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}

rootProject.name = "gxf-java-utilities"
Expand All @@ -18,14 +18,14 @@ dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("avro", "1.12.0")
version("msal4j", "1.16.1")
version("msal4j", "1.17.2")

library("avro", "org.apache.avro", "avro").versionRef("avro")
library("msal", "com.microsoft.azure", "msal4j").versionRef("msal4j")
}

create("testLibs") {
version("mockitoKotlin", "5.1.0")
version("mockitoKotlin", "5.4.0")
version("mockServer", "5.15.0")

library("mockitoKotlin", "org.mockito.kotlin", "mockito-kotlin").versionRef("mockitoKotlin")
Expand Down

0 comments on commit 5024032

Please sign in to comment.