Skip to content

Commit

Permalink
Add missing dependencies to module-info.java
Browse files Browse the repository at this point in the history
Signed-off-by: Ehsan Zaery Moghaddam <zaerymoghaddam@gmail.com>
  • Loading branch information
moghaddam committed Aug 2, 2017
1 parent 29a16c8 commit 47175b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
module org.eclipse.yasson {
requires java.json;
requires java.json.bind;
requires java.naming;
requires java.desktop;



exports org.eclipse.yasson;
provides javax.json.bind.spi.JsonbProvider with org.eclipse.yasson.JsonBindingProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

/**
* CDI instance manager.
* Instances are are created and stored per instance of {@link JsonBinding}.
* Instances are created and stored per instance of {@link JsonBinding}.
* Calling close on JsonBinding, cleans up Jsonb CDI instances and in case of "dependant" scope its dependencies.
*
* @author Roman Grigoriadi
Expand Down

0 comments on commit 47175b0

Please sign in to comment.