Skip to content

Commit 534917b

Browse files
committed
Fix GitHub API Jackson conflict by isolating dependency
1 parent 3fa9abc commit 534917b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

application/build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,13 @@ dependencies {
7575

7676
implementation 'com.github.ben-manes.caffeine:caffeine:3.2.0'
7777

78-
implementation 'org.kohsuke:github-api:1.329'
78+
implementation('org.kohsuke:github-api:1.326') {
79+
exclude group: 'com.fasterxml.jackson.core'
80+
exclude group: 'com.fasterxml.jackson.datatype'
81+
exclude group: 'com.fasterxml.jackson.dataformat'
82+
exclude group: 'com.fasterxml.jackson.module'
83+
}
84+
7985

8086
implementation 'org.apache.commons:commons-text:1.14.0'
8187
implementation 'com.apptasticsoftware:rssreader:3.10.0'

0 commit comments

Comments
 (0)