Remove nimbus version. Made analytics work

This commit is contained in:
Irina Tarnavski 2022-03-22 22:33:17 -07:00
Родитель 841f339742
Коммит ccd8daacef
3 изменённых файлов: 10 добавлений и 5 удалений

Просмотреть файл

@ -14,7 +14,7 @@ version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations.all {
resolutionStrategy.force 'com.nimbusds:nimbus-jose-jwt:7.9', 'com.google.guava:guava:25.0-jre'
resolutionStrategy.force 'com.google.guava:guava:25.0-jre'
}
configurations {
@ -46,7 +46,7 @@ dependencies {
implementation project(path: ':dfp-auth-starter', configuration: 'default')
implementation project(path: ':durable-ehub-starter', configuration: 'default')
implementation 'com.nimbusds:nimbus-jose-jwt:7.9'
implementation 'com.nimbusds:nimbus-jose-jwt'
implementation 'com.google.guava:guava:25.0-jre'
implementation 'io.github.resilience4j:resilience4j-spring-boot2:1.7.1'
implementation 'org.springframework.boot:spring-boot-starter-actuator'

Просмотреть файл

@ -32,5 +32,5 @@ jar {
dependencies {
implementation project(path: ':model', configuration: 'default')
implementation 'com.azure:azure-spring-data-cosmos:3.18.0'
implementation 'com.azure:azure-spring-data-cosmos:3.19.0'
}

Просмотреть файл

@ -14,7 +14,7 @@ version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations.all {
resolutionStrategy.force 'com.nimbusds:nimbus-jose-jwt:7.9', 'com.google.guava:guava:25.0-jre'
resolutionStrategy.force 'com.google.guava:guava:25.0-jre'
}
configurations {
@ -32,7 +32,12 @@ ext {
set('appInsightsVersion', '2.6.1')
}
dependencyManagement {imports {mavenBom "com.azure.spring:azure-spring-boot-bom:${azureVersion}"}}
dependencyManagement {
imports {
mavenBom "com.azure.spring:azure-spring-boot-bom:${azureVersion}"
mavenBom "com.azure.spring:azure-spring-cloud-dependencies:2.14.0"
}
}
dependencies {