Skip to content

Commit

Permalink
add module info (#9)
Browse files Browse the repository at this point in the history
* add module info

* add new line at eof
  • Loading branch information
c-eg committed Aug 11, 2024
1 parent 527e228 commit b9e3d8b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module uk.co.conoregan.watch2getherapi {
requires com.fasterxml.jackson.annotation;
requires com.fasterxml.jackson.core;
requires com.fasterxml.jackson.databind;
requires java.net.http;
requires org.slf4j;
requires jdk.crypto.cryptoki;

opens uk.co.conoregan.watch2getherapi.model to com.fasterxml.jackson.databind;

exports uk.co.conoregan.watch2getherapi;
exports uk.co.conoregan.watch2getherapi.model;
exports uk.co.conoregan.watch2getherapi.http;
exports uk.co.conoregan.watch2getherapi.util;
exports uk.co.conoregan.watch2getherapi.exception;
}

0 comments on commit b9e3d8b

Please sign in to comment.