Skip to content

Commit 3eca075

Browse files
committed
cleanup
1 parent 2b9d8eb commit 3eca075

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

client/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ archivesBaseName = 'durabletask-client'
1414
def grpcVersion = '1.59.0'
1515
def protocVersion = '3.12.0'
1616
def jacksonVersion = '2.15.3'
17-
def azureCoreVersion = '1.45.0'
18-
def azureIdentityVersion = '1.11.1'
1917
// When build on local, you need to set this value to your local jdk11 directory.
2018
// Java11 is used to compile and run all the tests.
2119
// Example for Windows: C:/Program Files/Java/openjdk-11.0.12_7/
@@ -30,10 +28,12 @@ dependencies {
3028

3129
compileOnly "org.apache.tomcat:annotations-api:6.0.53"
3230

33-
// Azure dependencies for authentication
34-
implementation "com.azure:azure-core:${azureCoreVersion}"
35-
implementation "com.azure:azure-identity:${azureIdentityVersion}"
36-
31+
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
32+
implementation "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
33+
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
34+
implementation "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
35+
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jacksonVersion}"
36+
3737
testImplementation(platform('org.junit:junit-bom:5.7.2'))
3838
testImplementation('org.junit.jupiter:junit-jupiter')
3939
}

0 commit comments

Comments
 (0)