Skip to content
Merged
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
4 changes: 4 additions & 0 deletions demos/roms-amr-entraid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ repositories {
dependencies {
implementation project(':redis-om-spring')

// Azure Identity for Entra ID authentication
implementation "com.azure:azure-identity:${azureIdentityVersion}"
implementation "com.google.code.gson:gson"

// Important for RedisOM annotation processing!
annotationProcessor project(':redis-om-spring')
testAnnotationProcessor project(':redis-om-spring')
Expand Down
1 change: 1 addition & 0 deletions redis-om-spring-ai/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies {
compileOnly "jakarta.websocket:jakarta.websocket-client-api"
implementation "org.springframework.ai:spring-ai-ollama:${springAiVersion}"
implementation "org.springframework.ai:spring-ai-azure-openai:${springAiVersion}"
compileOnly "com.azure:azure-identity:${azureIdentityVersion}"
implementation "org.springframework.ai:spring-ai-vertex-ai-embedding:${springAiVersion}"
implementation "org.springframework.ai:spring-ai-bedrock:${springAiVersion}"
implementation "org.springframework.ai:spring-ai-transformers:${springAiVersion}"
Expand Down
3 changes: 2 additions & 1 deletion redis-om-spring/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ dependencies {
api "jakarta.persistence:jakarta.persistence-api"
api "com.fasterxml.jackson.core:jackson-databind"
api "redis.clients:jedis"
api "com.azure:azure-identity:${azureIdentityVersion}"
compileOnly "com.azure:azure-identity:${azureIdentityVersion}"
compileOnly "com.google.code.gson:gson"
api "com.google.guava:guava:${guavaVersion}"
api "com.github.f4b6a3:ulid-creator:${ulidVersion}"
api "org.apache.commons:commons-lang3"
Expand Down