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
14 changes: 14 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,9 @@ allprojects {
force "net.java.dev.jna:jna:${jnaVersion}"
force "net.java.dev.jna:jna-platform:${jnaVersion}"

// Spring AI 2.0 and Duo SDK bring in different versions
force "net.bytebuddy:byte-buddy:${byteBuddyVersion}"

// Reactor - transitive dependency via azure-core; force for version consistency across modules
force "io.projectreactor:reactor-core:${reactorCoreVersion}"

Expand Down Expand Up @@ -375,6 +378,14 @@ allprojects {
// Force consistency for dependencies from pipeline and query
force "org.dom4j:dom4j:${dom4jVersion}"

// Force spring-ai components to bring in spring-* versions that match the rest of spring
force "org.springframework:spring-context-support:${springVersion}"
force "org.springframework:spring-messaging:${springVersion}"
force "org.springframework:spring-webflux:${springVersion}"

// Force spring-ai components to bring in the AssertJ version we want
force "org.assertj:assertj-core:${assertjVersion}"

// Force consistency between pipeline's ActiveMQ and cloud's jClouds dependencies
force "javax.annotation:javax.annotation-api:${javaxAnnotationVersion}"

Expand All @@ -390,6 +401,9 @@ allprojects {
// Force latest hadoop-hdfs-client for CVE-2021-37404, CVE-2022-25168, CVE-2022-26612, CVE-2021-25642, CVE-2021-33036, CVE-2023-26031
force "org.apache.hadoop:hadoop-hdfs-client:${hadoopHdfsClientVersion}"

// Spring AI 2.0 brings in Jackson3. Force it to match embedded and mitigate CVEs.
force "tools.jackson.core:jackson-core:${jackson3Version}"

dependencySubstitution {
// Because the client api artifact name is not the same as the directory structure, we use
// Gradle's dependency substitution so the dependency will appear correctly in the pom files that
Expand Down
11 changes: 8 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ apacheTomcatVersion=11.0.18
# tika
asmVersion=9.9.1

# Also defined in testAutomation/gradle.properties
assertjVersion=3.27.7

# Microsoft library for sending OAuth2-authenticated notification emails via the Microsoft Graph API
azureIdentityVersion=1.18.2

Expand All @@ -117,6 +120,8 @@ batikVersion=1.19
bouncycastlePgpVersion=1.83
bouncycastleVersion=1.83

byteBuddyVersion=1.18.7

cglibNodepVersion=2.2.3

checkerQualVersion=3.53.0
Expand Down Expand Up @@ -305,10 +310,10 @@ slf4jLog4jApiVersion=2.0.17
snappyJavaVersion=1.1.10.8

# Also, update apacheTomcatVersion above to match Spring Boot's Tomcat dependency version
springBootVersion=4.0.3
springBootVersion=4.0.4
# This usually matches the Spring Framework version dictated by springBootVersion
springVersion=7.0.5
springAiVersion=2.0.0-M2
springVersion=7.0.6
springAiVersion=2.0.0-M3

sqliteJdbcVersion=3.51.2.0

Expand Down
Loading