Skip to content

Commit ad3ac26

Browse files
author
Gonzalo Diaz
committed
[CONFIG] gradle dependencies: jackson (JSON) parser added.
1 parent 456bb68 commit ad3ac26

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

algorithm-exercises-java/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ dependencies {
2929

3030
// This dependency is used by the application.
3131
implementation 'com.google.guava:guava:33.3.0-jre'
32+
33+
//
34+
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.17.2'
35+
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.17.2'
36+
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.17.2'
37+
3238
}
3339

3440
application {

0 commit comments

Comments
 (0)