aboutsummaryrefslogtreecommitdiffstats
path: root/poi/src/test/java9/module-info.java
blob: 144f449872a0b1a47ff6521d0971ee9045749bc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */

module org.apache.poi.poi {
    requires org.apache.commons.collections4;
    requires org.apache.commons.codec;
    requires org.apache.commons.io;
    requires commons.math3;
    requires com.zaxxer.sparsebitset;
    requires org.apache.logging.log4j;
    requires java.logging;
    requires java.desktop;

    uses org.apache.poi.sl.usermodel.MetroShapeProvider;

    /* needed for CleanerUtil */
    requires jdk.unsupported;

    /* for JPMS / OSGi interaction see https://blog.osgi.org/2013/02/javautilserviceloader-in-osgi.html */
    uses org.apache.poi.extractor.ExtractorProvider;
    uses org.apache.poi.ss.usermodel.WorkbookProvider;
    uses org.apache.poi.sl.usermodel.SlideShowProvider;
    uses org.apache.poi.sl.draw.ImageRenderer;

    provides org.apache.poi.extractor.ExtractorProvider with org.apache.poi.extractor.MainExtractorFactory;
    provides org.apache.poi.ss.usermodel.WorkbookProvider with org.apache.poi.hssf.usermodel.HSSFWorkbookFactory;
    provides org.apache.poi.sl.draw.ImageRenderer with org.apache.poi.sl.draw.BitmapImageRenderer;

    exports org.apache.poi;
    exports org.apache.poi.common;
    exports org.apache.poi.common.usermodel;
    exports org.apache.poi.common.usermodel.fonts;
    exports org.apache.poi.ddf;
    exports org.apache.poi.extractor;
    exports org.apache.poi.hpsf;
    exports org.apache.poi.hpsf.extractor;
    exports org.apache.poi.hpsf.wellknown;
    exports org.apache.poi.hssf;
    exports org.apache.poi.hssf.dev;
    exports org.apache.poi.hssf.eventmodel;
    exports org.apache.poi.hssf.eventusermodel;
    exports org.apache.poi.hssf.eventusermodel.dummyrecord;
    exports org.apache.poi.hssf.extractor;
    exports org.apache.poi.hssf.model;
    exports org.apache.poi.hssf.record;
    exports org.apache.poi.hssf.record.aggregates;
    exports org.apache.poi.hssf.record.cf;
    exports org.apache.poi.hssf.record.chart;
    exports org.apache.poi.hssf.record.common;
    exports org.apache.poi.hssf.record.cont;
    exports org.apache.poi.hssf.record.crypto;
    exports org.apache.poi.hssf.record.pivottable;
    exports org.apache.poi.hssf.usermodel;
    exports org.apache.poi.hssf.usermodel.helpers;
    exports org.apache.poi.hssf.util;
    exports org.apache.poi.poifs.common;
    exports org.apache.poi.poifs.crypt;
    exports org.apache.poi.poifs.crypt.agile;
    exports org.apache.poi.poifs.crypt.binaryrc4;
    exports org.apache.poi.poifs.crypt.cryptoapi;
    exports org.apache.poi.poifs.crypt.standard;
    exports org.apache.poi.poifs.crypt.xor;
    exports org.apache.poi.poifs.dev;
    exports org.apache.poi.poifs.eventfilesystem;
    exports org.apache.poi.poifs.filesystem;
    exports org.apache.poi.poifs.macros;
    exports org.apache.poi.poifs.nio;
    exports org.apache.poi.poifs.property;
    exports org.apache.poi.poifs.storage;
    exports org.apache.poi.sl.draw;
    exports org.apache.poi.sl.draw.geom;
    exports org.apache.poi.sl.extractor;
    exports org.apache.poi.sl.image;
    exports org.apache.poi.sl.usermodel;
    exports org.apache.poi.ss;
    exports org.apache.poi.ss.extractor;
    exports org.apache.poi.ss.format;
    exports org.apache.poi.ss.formula;
    exports org.apache.poi.ss.formula.atp;
    exports org.apache.poi.ss.formula.constant;
    exports org.apache.poi.ss.formula.eval;
    exports org.apache.poi.ss.formula.eval.forked;
    exports org.apache.poi.ss.formula.function;
    exports org.apache.poi.ss.formula.functions;
    exports org.apache.poi.ss.formula.ptg;
    exports org.apache.poi.ss.formula.udf;
    exports org.apache.poi.ss.usermodel;
    exports org.apache.poi.ss.usermodel.helpers;
    exports org.apache.poi.ss.util;
    exports org.apache.poi.ss.util.cellwalk;
    exports org.apache.poi.util;
    exports org.apache.poi.wp.usermodel;

    // test specific exports
    requires net.bytebuddy;
    requires org.junit.jupiter.api;
    requires org.junit.jupiter.params;

    exports org.apache.poi.hpsf.basic to org.junit.platform.commons;
    exports org.apache.poi.hssf.record.pivot to org.junit.platform.commons;

    opens org.apache.poi to org.junit.platform.commons;
    opens org.apache.poi.common to org.junit.platform.commons;
    opens org.apache.poi.common.usermodel to org.junit.platform.commons;
    opens org.apache.poi.common.usermodel.fonts to org.junit.platform.commons;
    opens org.apache.poi.ddf to org.junit.platform.commons;
    opens org.apache.poi.extractor to org.junit.platform.commons;
    opens org.apache.poi.hpsf to org.junit.platform.commons;
    opens org.apache.poi.hpsf.basic to org.junit.platform.commons;
    opens org.apache.poi.hpsf.extractor to org.junit.platform.commons;
    opens org.apache.poi.hpsf.wellknown to org.junit.platform.commons;
    opens org.apache.poi.hssf to org.junit.platform.commons;
    opens org.apache.poi.hssf.dev to org.junit.platform.commons;
    opens org.apache.poi.hssf.eventmodel to org.junit.platform.commons;
    opens org.apache.poi.hssf.eventusermodel to org.junit.platform.commons;
    opens org.apache.poi.hssf.eventusermodel.dummyrecord to org.junit.platform.commons;
    opens org.apache.poi.hssf.extractor to org.junit.platform.commons;
    opens org.apache.poi.hssf.model to org.junit.platform.commons;
    opens org.apache.poi.hssf.record to org.junit.platform.commons;
    opens org.apache.poi.hssf.record.aggregates to org.junit.platform.commons;
    opens org.apache.poi.hssf.record.cf to org.junit.platform.commons;
    opens org.apache.poi.hssf.record.chart to org.junit.platform.commons;
    opens org.apache.poi.hssf.record.common to org.junit.platform.commons;
    opens org.apache.poi.hssf.record.cont to org.junit.platform.commons;
    opens org.apache.poi.hssf.record.crypto to org.junit.platform.commons;
    opens org.apache.poi.hssf.record.pivot to org.junit.platform.commons;
    opens org.apache.poi.hssf.record.pivottable to org.junit.platform.commons;
    opens org.apache.poi.hssf.usermodel to org.junit.platform.commons;
    opens org.apache.poi.hssf.usermodel.helpers to org.junit.platform.commons;
    opens org.apache.poi.hssf.util to org.junit.platform.commons;
    opens org.apache.poi.poifs.common to org.junit.platform.commons;
    opens org.apache.poi.poifs.crypt to org.junit.platform.commons;
    opens org.apache.poi.poifs.crypt.agile to org.junit.platform.commons;
    opens org.apache.poi.poifs.crypt.binaryrc4 to org.junit.platform.commons;
    opens org.apache.poi.poifs.crypt.cryptoapi to org.junit.platform.commons;
    opens org.apache.poi.poifs.crypt.standard to org.junit.platform.commons;
    opens org.apache.poi.poifs.crypt.xor to org.junit.platform.commons;
    opens org.apache.poi.poifs.dev to org.junit.platform.commons;
    opens org.apache.poi.poifs.eventfilesystem to org.junit.platform.commons;
    opens org.apache.poi.poifs.filesystem to org.junit.platform.commons;
    opens org.apache.poi.poifs.macros to org.junit.platform.commons;
    opens org.apache.poi.poifs.nio to org.junit.platform.commons;
    opens org.apache.poi.poifs.property to org.junit.platform.commons;
    opens org.apache.poi.poifs.storage to org.junit.platform.commons;
    opens org.apache.poi.sl.draw to org.junit.platform.commons;
    opens org.apache.poi.sl.draw.geom to org.junit.platform.commons;
    opens org.apache.poi.sl.extractor to org.junit.platform.commons;
    opens org.apache.poi.sl.image to org.junit.platform.commons;
    opens org.apache.poi.sl.usermodel to org.junit.platform.commons;
    opens org.apache.poi.ss to org.junit.platform.commons;
    opens org.apache.poi.ss.extractor to org.junit.platform.commons;
    opens org.apache.poi.ss.format to org.junit.platform.commons;
    opens org.apache.poi.ss.formula to org.junit.platform.commons;
    opens org.apache.poi.ss.formula.atp to org.junit.platform.commons;
    opens org.apache.poi.ss.formula.constant to org.junit.platform.commons;
    opens org.apache.poi.ss.formula.eval to org.junit.platform.commons;
    opens org.apache.poi.ss.formula.eval.forked to org.junit.platform.commons;
    opens org.apache.poi.ss.formula.function to org.junit.platform.commons;
    opens org.apache.poi.ss.formula.functions to org.junit.platform.commons;
    opens org.apache.poi.ss.formula.ptg to org.junit.platform.commons;
    opens org.apache.poi.ss.formula.udf to org.junit.platform.commons;
    opens org.apache.poi.ss.usermodel to org.junit.platform.commons;
    opens org.apache.poi.ss.usermodel.helpers to org.junit.platform.commons;
    opens org.apache.poi.ss.util to org.junit.platform.commons;
    opens org.apache.poi.ss.util.cellwalk to org.junit.platform.commons;
    opens org.apache.poi.util to org.junit.platform.commons;
    opens org.apache.poi.wp.usermodel to org.junit.platform.commons;
}