Skip to content

Commit 9c5d086

Browse files
committed
Fix #54 Add module-info.java
1 parent 67ab029 commit 9c5d086

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
/*
2+
* Copyright 2022 The Apache Software Foundation.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
module org.odftoolkit.odfdom {
18+
exports org.odftoolkit.odfdom;
19+
exports org.odftoolkit.odfdom.changes;
20+
exports org.odftoolkit.odfdom.doc.presentation;
21+
exports org.odftoolkit.odfdom.doc.table;
22+
exports org.odftoolkit.odfdom.doc;
23+
exports org.odftoolkit.odfdom.dom.attribute.anim;
24+
exports org.odftoolkit.odfdom.dom.attribute.chart;
25+
exports org.odftoolkit.odfdom.dom.attribute.config;
26+
exports org.odftoolkit.odfdom.dom.attribute.db;
27+
exports org.odftoolkit.odfdom.dom.attribute.dr3d;
28+
exports org.odftoolkit.odfdom.dom.attribute.draw;
29+
exports org.odftoolkit.odfdom.dom.attribute.fo;
30+
exports org.odftoolkit.odfdom.dom.attribute.form;
31+
exports org.odftoolkit.odfdom.dom.attribute.grddl;
32+
exports org.odftoolkit.odfdom.dom.attribute.meta;
33+
exports org.odftoolkit.odfdom.dom.attribute.number;
34+
exports org.odftoolkit.odfdom.dom.attribute.office;
35+
exports org.odftoolkit.odfdom.dom.attribute.presentation;
36+
exports org.odftoolkit.odfdom.dom.attribute.script;
37+
exports org.odftoolkit.odfdom.dom.attribute.smil;
38+
exports org.odftoolkit.odfdom.dom.attribute.style;
39+
exports org.odftoolkit.odfdom.dom.attribute.svg;
40+
exports org.odftoolkit.odfdom.dom.attribute.table;
41+
exports org.odftoolkit.odfdom.dom.attribute.text;
42+
exports org.odftoolkit.odfdom.dom.attribute.xforms;
43+
exports org.odftoolkit.odfdom.dom.attribute.xhtml;
44+
exports org.odftoolkit.odfdom.dom.attribute.xlink;
45+
exports org.odftoolkit.odfdom.dom.attribute.xml;
46+
exports org.odftoolkit.odfdom.dom.element;
47+
exports org.odftoolkit.odfdom.dom.element.anim;
48+
exports org.odftoolkit.odfdom.dom.element.chart;
49+
exports org.odftoolkit.odfdom.dom.element.config;
50+
exports org.odftoolkit.odfdom.dom.element.db;
51+
exports org.odftoolkit.odfdom.dom.element.dc;
52+
exports org.odftoolkit.odfdom.dom.element.dr3d;
53+
exports org.odftoolkit.odfdom.dom.element.draw;
54+
exports org.odftoolkit.odfdom.dom.element.form;
55+
exports org.odftoolkit.odfdom.dom.element.math;
56+
exports org.odftoolkit.odfdom.dom.element.meta;
57+
exports org.odftoolkit.odfdom.dom.element.number;
58+
exports org.odftoolkit.odfdom.dom.element.office;
59+
exports org.odftoolkit.odfdom.dom.element.presentation;
60+
exports org.odftoolkit.odfdom.dom.element.script;
61+
exports org.odftoolkit.odfdom.dom.element.style;
62+
exports org.odftoolkit.odfdom.dom.element.svg;
63+
exports org.odftoolkit.odfdom.dom.element.table;
64+
exports org.odftoolkit.odfdom.dom.element.text;
65+
exports org.odftoolkit.odfdom.dom.element.xforms;
66+
exports org.odftoolkit.odfdom.dom;
67+
exports org.odftoolkit.odfdom.dom.style;
68+
exports org.odftoolkit.odfdom.dom.style.props;
69+
exports org.odftoolkit.odfdom.incubator.doc.draw;
70+
exports org.odftoolkit.odfdom.incubator.doc.number;
71+
exports org.odftoolkit.odfdom.incubator.doc.office;
72+
exports org.odftoolkit.odfdom.incubator.doc.style;
73+
exports org.odftoolkit.odfdom.incubator.doc.text;
74+
exports org.odftoolkit.odfdom.incubator.meta;
75+
exports org.odftoolkit.odfdom.incubator.search;
76+
exports org.odftoolkit.odfdom.pkg;
77+
exports org.odftoolkit.odfdom.pkg.dsig;
78+
exports org.odftoolkit.odfdom.pkg.manifest;
79+
exports org.odftoolkit.odfdom.pkg.rdfa;
80+
exports org.odftoolkit.odfdom.type;
81+
exports org.odftoolkit.odfdom.dom.rdfa;
82+
83+
requires commons.validator;
84+
requires java.desktop;
85+
requires java.logging;
86+
requires java.rdfa;
87+
requires java.xml;
88+
requires org.apache.commons.compress;
89+
requires org.apache.commons.lang3;
90+
requires org.apache.jena.core;
91+
requires org.json;
92+
requires org.slf4j;
93+
requires serializer;
94+
requires xercesImpl;
95+
}

0 commit comments

Comments
 (0)