2020-05-05 13:36:30 +00:00
|
|
|
/* ====================================================================
|
2020-06-25 22:06:52 +00:00
|
|
|
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
|
2020-05-05 13:36:30 +00:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
==================================================================== */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
open module org.apache.poi.ooxml.schemas {
|
2020-07-22 22:08:33 +00:00
|
|
|
// this still throws "requires transitive directive for an automatic module" in JDK 14
|
|
|
|
|
// see https://bugs.openjdk.java.net/browse/JDK-8240847
|
|
|
|
|
requires transitive org.apache.xmlbeans;
|
2020-05-05 13:36:30 +00:00
|
|
|
requires java.xml;
|
|
|
|
|
exports com.microsoft.schemas.compatibility;
|
|
|
|
|
exports com.microsoft.schemas.office.excel;
|
|
|
|
|
exports com.microsoft.schemas.office.office;
|
|
|
|
|
exports com.microsoft.schemas.office.powerpoint;
|
|
|
|
|
exports com.microsoft.schemas.office.visio.x2012.main;
|
|
|
|
|
exports com.microsoft.schemas.office.word;
|
|
|
|
|
exports com.microsoft.schemas.vml;
|
|
|
|
|
exports org.openxmlformats.schemas.drawingml.x2006.chart;
|
|
|
|
|
exports org.openxmlformats.schemas.drawingml.x2006.chartDrawing;
|
|
|
|
|
exports org.openxmlformats.schemas.drawingml.x2006.diagram;
|
|
|
|
|
exports org.openxmlformats.schemas.drawingml.x2006.lockedCanvas;
|
|
|
|
|
exports org.openxmlformats.schemas.drawingml.x2006.main;
|
|
|
|
|
exports org.openxmlformats.schemas.drawingml.x2006.picture;
|
|
|
|
|
exports org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing;
|
|
|
|
|
exports org.openxmlformats.schemas.drawingml.x2006.wordprocessingDrawing;
|
|
|
|
|
exports org.openxmlformats.schemas.officeDocument.x2006.bibliography;
|
|
|
|
|
exports org.openxmlformats.schemas.officeDocument.x2006.characteristics;
|
|
|
|
|
exports org.openxmlformats.schemas.officeDocument.x2006.customProperties;
|
|
|
|
|
exports org.openxmlformats.schemas.officeDocument.x2006.customXml;
|
|
|
|
|
exports org.openxmlformats.schemas.officeDocument.x2006.docPropsVTypes;
|
|
|
|
|
exports org.openxmlformats.schemas.officeDocument.x2006.extendedProperties;
|
|
|
|
|
exports org.openxmlformats.schemas.officeDocument.x2006.math;
|
|
|
|
|
exports org.openxmlformats.schemas.officeDocument.x2006.relationships;
|
|
|
|
|
exports org.openxmlformats.schemas.presentationml.x2006.main;
|
|
|
|
|
exports org.openxmlformats.schemas.schemaLibrary.x2006.main;
|
|
|
|
|
exports org.openxmlformats.schemas.spreadsheetml.x2006.main;
|
|
|
|
|
exports org.openxmlformats.schemas.wordprocessingml.x2006.main;
|
2020-07-22 22:08:33 +00:00
|
|
|
|
|
|
|
|
exports com.microsoft.schemas.office.x2006.digsig;
|
|
|
|
|
exports org.etsi.uri.x01903.v13;
|
|
|
|
|
exports org.etsi.uri.x01903.v14;
|
|
|
|
|
exports org.openxmlformats.schemas.xpackage.x2006.digitalSignature;
|
|
|
|
|
exports org.openxmlformats.schemas.xpackage.x2006.relationships;
|
|
|
|
|
exports org.w3.x2000.x09.xmldsig;
|
2020-10-10 23:33:26 +00:00
|
|
|
|
|
|
|
|
exports org.apache.poi.schemas.vmldrawing;
|
2020-05-05 13:36:30 +00:00
|
|
|
}
|