Skip to content

Commit

Permalink
fix module info missing requirement + not exporting (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-eg authored May 31, 2023
1 parent 68adb17 commit 2d6e5e9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
module info.movito.themoviedbapi {
requires org.slf4j;
requires org.apache.commons.codec;
requires org.apache.commons.lang3;
requires com.fasterxml.jackson.annotation;
requires com.fasterxml.jackson.core;
requires com.fasterxml.jackson.databind;

exports info.movito.themoviedbapi;
exports info.movito.themoviedbapi.model;
exports info.movito.themoviedbapi.model.changes;
exports info.movito.themoviedbapi.model.config;
exports info.movito.themoviedbapi.model.core;
exports info.movito.themoviedbapi.model.keywords;
exports info.movito.themoviedbapi.model.people;
exports info.movito.themoviedbapi.model.providers;
exports info.movito.themoviedbapi.model.tv;
exports info.movito.themoviedbapi.tools;
}

0 comments on commit 2d6e5e9

Please sign in to comment.