Skip to content

Commit

Permalink
Fixed missing provides
Browse files Browse the repository at this point in the history
if we have a src/main/resources/META-INF/services/com.fasterxml.jackson.core.JsonFactory
this works in projects that have no module-info.java, but if a project does have module-info.java
then we need to also add the java modules way of provides
  • Loading branch information
sdyura committed Sep 24, 2024
1 parent b9d56af commit a0f1323
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/moditect/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@

// 03-Oct-2019, tatu: [core#567] Add self-use to avoid warnings
uses com.fasterxml.jackson.core.ObjectCodec;

provides com.fasterxml.jackson.core.JsonFactory with
com.fasterxml.jackson.core.JsonFactory;
}

0 comments on commit a0f1323

Please sign in to comment.