aboutsummaryrefslogtreecommitdiffstats
path: root/poi-scratchpad/src/test/java9/module-info.java
blob: 748a2244a77fd54f1faee9639359a2d8af7513e5 (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
/* ====================================================================
   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.scratchpad {
    requires transitive org.apache.poi.poi;
    requires java.desktop;
    requires commons.math3;
    requires org.apache.commons.io;
    requires org.apache.commons.codec;
    requires org.apache.commons.collections4;
    requires org.apache.logging.log4j;

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

    provides org.apache.poi.extractor.ExtractorProvider with org.apache.poi.extractor.ole2.OLE2ScratchpadExtractorFactory;
    provides org.apache.poi.sl.usermodel.SlideShowProvider with org.apache.poi.hslf.usermodel.HSLFSlideShowFactory;
    provides org.apache.poi.sl.draw.ImageRenderer with org.apache.poi.hwmf.draw.HwmfImageRenderer, org.apache.poi.hemf.draw.HemfImageRenderer;

    exports org.apache.poi.hmef;
    exports org.apache.poi.hmef.dev;
    exports org.apache.poi.hmef.extractor;
    exports org.apache.poi.hmef.attribute;
    exports org.apache.poi.hdgf;
    exports org.apache.poi.hdgf.dev;
    exports org.apache.poi.hdgf.streams;
    exports org.apache.poi.hdgf.extractor;
    exports org.apache.poi.hdgf.pointers;
    exports org.apache.poi.hdgf.exceptions;
    exports org.apache.poi.hdgf.chunks;
    exports org.apache.poi.hwpf;
    exports org.apache.poi.hwpf.dev;
    exports org.apache.poi.hwpf.sprm;
    exports org.apache.poi.hwpf.converter;
    exports org.apache.poi.hwpf.extractor;
    exports org.apache.poi.hwpf.usermodel;
    exports org.apache.poi.hwpf.model;
    exports org.apache.poi.hwpf.model.io;
    exports org.apache.poi.hwpf.model.types;
    exports org.apache.poi.hwmf.record;
    exports org.apache.poi.hwmf.draw;
    exports org.apache.poi.hwmf.usermodel;
    exports org.apache.poi.extractor.ole2;
    exports org.apache.poi.hpbf;
    exports org.apache.poi.hpbf.dev;
    exports org.apache.poi.hpbf.extractor;
    exports org.apache.poi.hpbf.model;
    exports org.apache.poi.hpbf.model.qcbits;
    exports org.apache.poi.hslf.dev;
    exports org.apache.poi.hslf.record;
    exports org.apache.poi.hslf.extractor;
    exports org.apache.poi.hslf.exceptions;
    exports org.apache.poi.hslf.usermodel;
    exports org.apache.poi.hslf.blip;
    exports org.apache.poi.hslf.model;
    exports org.apache.poi.hslf.model.textproperties;
    exports org.apache.poi.hslf.util;
    exports org.apache.poi.hssf.converter;
    exports org.apache.poi.hsmf;
    exports org.apache.poi.hsmf.dev;
    exports org.apache.poi.hsmf.datatypes;
    exports org.apache.poi.hsmf.extractor;
    exports org.apache.poi.hsmf.exceptions;
    exports org.apache.poi.hsmf.parsers;
    exports org.apache.poi.hemf.record.emf;
    exports org.apache.poi.hemf.record.emfplus;
    exports org.apache.poi.hemf.draw;
    exports org.apache.poi.hemf.usermodel;


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

    exports org.apache.poi.hemf.hemfplus.extractor to org.junit.platform.commons;
    exports org.apache.poi.hslf to org.junit.platform.commons;
    exports org.apache.poi.hwmf to org.junit.platform.commons;
    exports org.apache.poi.hwpf.util to org.junit.platform.commons;

    opens org.apache.poi.hwpf.model to org.mockito, org.junit.platform.commons;
    opens org.apache.poi.hwpf.model.types to org.mockito, org.junit.platform.commons;

    opens org.apache.poi.hmef to org.junit.platform.commons;
    opens org.apache.poi.hmef.dev to org.junit.platform.commons;
    opens org.apache.poi.hmef.extractor to org.junit.platform.commons;
    opens org.apache.poi.hmef.attribute to org.junit.platform.commons;
    opens org.apache.poi.hdgf to org.junit.platform.commons;
    opens org.apache.poi.hdgf.dev to org.junit.platform.commons;
    opens org.apache.poi.hdgf.streams to org.junit.platform.commons;
    opens org.apache.poi.hdgf.extractor to org.junit.platform.commons;
    opens org.apache.poi.hdgf.pointers to org.junit.platform.commons;
    opens org.apache.poi.hdgf.exceptions to org.junit.platform.commons;
    opens org.apache.poi.hdgf.chunks to org.junit.platform.commons;
    opens org.apache.poi.hwpf to org.junit.platform.commons;
    opens org.apache.poi.hwpf.dev to org.junit.platform.commons;
    opens org.apache.poi.hwpf.sprm to org.junit.platform.commons;
    opens org.apache.poi.hwpf.converter to org.junit.platform.commons;
    opens org.apache.poi.hwpf.extractor to org.junit.platform.commons;
    opens org.apache.poi.hwpf.usermodel to org.junit.platform.commons;
    opens org.apache.poi.hwpf.model.io to org.junit.platform.commons;
    opens org.apache.poi.hwpf.util to org.junit.platform.commons;
    opens org.apache.poi.hwmf to org.junit.platform.commons;
    opens org.apache.poi.hwmf.record to org.junit.platform.commons;
    opens org.apache.poi.hwmf.draw to org.junit.platform.commons;
    opens org.apache.poi.hwmf.usermodel to org.junit.platform.commons;
    opens org.apache.poi.extractor.ole2 to org.junit.platform.commons;
    opens org.apache.poi.hpbf to org.junit.platform.commons;
    opens org.apache.poi.hpbf.dev to org.junit.platform.commons;
    opens org.apache.poi.hpbf.extractor to org.junit.platform.commons;
    opens org.apache.poi.hpbf.model to org.junit.platform.commons;
    opens org.apache.poi.hpbf.model.qcbits to org.junit.platform.commons;
    opens org.apache.poi.hslf to org.junit.platform.commons;
    opens org.apache.poi.hslf.dev to org.junit.platform.commons;
    opens org.apache.poi.hslf.record to org.junit.platform.commons;
    opens org.apache.poi.hslf.extractor to org.junit.platform.commons;
    opens org.apache.poi.hslf.exceptions to org.junit.platform.commons;
    opens org.apache.poi.hslf.usermodel to org.junit.platform.commons;
    opens org.apache.poi.hslf.blip to org.junit.platform.commons;
    opens org.apache.poi.hslf.model to org.junit.platform.commons;
    opens org.apache.poi.hslf.model.textproperties to org.junit.platform.commons;
    opens org.apache.poi.hslf.util to org.junit.platform.commons;
    opens org.apache.poi.hssf.converter to org.junit.platform.commons;
    opens org.apache.poi.hsmf to org.junit.platform.commons;
    opens org.apache.poi.hsmf.dev to org.junit.platform.commons;
    opens org.apache.poi.hsmf.datatypes to org.junit.platform.commons;
    opens org.apache.poi.hsmf.extractor to org.junit.platform.commons;
    opens org.apache.poi.hsmf.exceptions to org.junit.platform.commons;
    opens org.apache.poi.hsmf.parsers to org.junit.platform.commons;
    opens org.apache.poi.hemf.record.emf to org.junit.platform.commons;
    opens org.apache.poi.hemf.record.emfplus to org.junit.platform.commons;
    opens org.apache.poi.hemf.hemfplus.extractor to org.junit.platform.commons;
    opens org.apache.poi.hemf.draw to org.junit.platform.commons;
    opens org.apache.poi.hemf.usermodel to org.junit.platform.commons;

}