-
-
Notifications
You must be signed in to change notification settings - Fork 105
Fix GitHub API Jackson conflict by isolating dependency #1333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,7 +75,13 @@ dependencies { | |
|
|
||
| implementation 'com.github.ben-manes.caffeine:caffeine:3.2.0' | ||
|
|
||
| implementation 'org.kohsuke:github-api:1.329' | ||
| implementation('org.kohsuke:github-api:1.326') { | ||
| exclude group: 'com.fasterxml.jackson.core' | ||
| exclude group: 'com.fasterxml.jackson.datatype' | ||
| exclude group: 'com.fasterxml.jackson.dataformat' | ||
| exclude group: 'com.fasterxml.jackson.module' | ||
|
Comment on lines
+79
to
+82
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please add an indentation (or run spotless)
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, ran gradlew.bat run and it ran without any error and showed build successful
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
ran spotless as well
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
thats not enough though. u need to actually run the bot, connect it to your local test server and for example use the the compilation worked before already as well.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i guess spotless doesnt run on the gradle file then. either case, please add indents, thanks
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You also need to update the jackson dependency to provoke the problematic setup. The current versions never created any problems to begin with. See the ticket description again and the linked jackson update :) |
||
| } | ||
|
|
||
|
|
||
| implementation 'org.apache.commons:commons-text:1.14.0' | ||
| implementation 'com.apptasticsoftware:rssreader:3.10.0' | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.