-
Notifications
You must be signed in to change notification settings - Fork 949
Expand file tree
/
Copy pathmodule-info.java
More file actions
22 lines (22 loc) · 909 Bytes
/
module-info.java
File metadata and controls
22 lines (22 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module org.apache.pdfbox.debugger {
requires org.apache.pdfbox;
requires java.desktop;
requires org.apache.pdfbox.io;
requires org.apache.logging.log4j;
requires org.apache.fontbox;
requires info.picocli;
requires java.prefs;
requires org.apache.logging.log4j.core;
exports org.apache.pdfbox.debugger;
exports org.apache.pdfbox.debugger.colorpane;
exports org.apache.pdfbox.debugger.flagbitspane;
exports org.apache.pdfbox.debugger.fontencodingpane;
exports org.apache.pdfbox.debugger.hexviewer;
exports org.apache.pdfbox.debugger.pagepane;
exports org.apache.pdfbox.debugger.streampane;
exports org.apache.pdfbox.debugger.streampane.tooltip;
exports org.apache.pdfbox.debugger.stringpane;
exports org.apache.pdfbox.debugger.treestatus;
exports org.apache.pdfbox.debugger.ui;
exports org.apache.pdfbox.debugger.ui.textsearcher;
}