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
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@ allprojects {
configurations.configureEach
{Configuration config ->
resolutionStrategy {
// spring-ai pulls a different version of antr-ST4 than the version pulled by query (via antlr)
force "org.antlr:ST4:${antlrST4Version}"
// we force this version because we have compilation problems with version 1.9.2 of commons-beanutils, which is the version
// that is brought in by Gradle's conflict resolution as a result of our chosen versions for commons-validator (1.5.0) and commons-digester (1.8.1)
force "commons-beanutils:commons-beanutils:${commonsBeanutilsVersion}"
Expand Down
4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ annotationsVersion=15.0

antVersion=1.10.13

antlrST4Version=4.3.4

#Unifying version used by DISCVR and Premium
apacheDirectoryVersion=2.1.7
#Transitive dependency of Apache directory: 2.0.18 contains some regressions
Expand Down Expand Up @@ -288,6 +290,8 @@ snappyJavaVersion=1.1.10.8
springBootVersion=4.0.1
# This usually matches the Spring Framework version dictated by springBootVersion
springVersion=7.0.2
springAiVersion=1.1.2
Copy link
Contributor

@labkey-jeckels labkey-jeckels Jan 19, 2026

Choose a reason for hiding this comment

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

Do we need this at the root? Looks like it's only used in the API module. Do you expect other modules will need it before long?

Regardless, we need to resolve the handful of dependency version conflicts before this can be merged.

# springAiVersion=2.0.0-M1

sqliteJdbcVersion=3.51.1.0

Expand Down