OnnoH commented on PR #121:
URL: https://github.com/apache/freemarker/pull/121#issuecomment-2873879353
@fugerit79 @ddekany
Found the culprits!
```
<dependency>
<groupId>com.spotify</groupId>
<artifactId>github-client</artifactId>
<version>${github-client.version}</version>
</dependency>
```
and
```
<dependency>
<groupId>org.eclipse.jgit</groupId>
<artifactId>org.eclipse.jgit</artifactId>
<version>${jgit.version}</version>
</dependency>
```
They both have a transitive dependency to Slf4J.
Although never called, the mere presence of
```
final GitHubClient githubClient =
GitHubClient.create(URI.create(API_GITHUB_URL), API_GITHUB_TOKEN);
```
was apparently enough to throw the error.
I'm will add it to the sample project and share it here when ready.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]