Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.329') {
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add an indentation (or run spotless)

Copy link
Author

Choose a reason for hiding this comment

The 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

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add an indentation (or run spotless)

ran spotless as well

Copy link
Member

@Zabuzard Zabuzard Oct 14, 2025

Choose a reason for hiding this comment

The 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

thats not enough though. u need to actually run the bot, connect it to your local test server and for example use the /ping command successfully :)

the compilation worked before already as well.
and u need to check it with the updated dependency as the error doesnt occur beforehand anyways.

Copy link
Member

Choose a reason for hiding this comment

The 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

Copy link
Member

Choose a reason for hiding this comment

The 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'
Expand Down