You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

module-info.java 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* ====================================================================
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. ==================================================================== */
  15. module org.apache.poi.ooxml {
  16. requires transitive org.apache.poi.poi;
  17. requires transitive org.apache.xmlbeans;
  18. requires transitive org.apache.poi.ooxml.schemas;
  19. requires org.apache.commons.collections4;
  20. requires org.apache.commons.codec;
  21. requires org.apache.commons.compress;
  22. requires org.apache.commons.io;
  23. requires commons.math3;
  24. requires SparseBitSet;
  25. requires org.apache.logging.log4j;
  26. requires java.logging;
  27. requires java.desktop;
  28. requires java.security.jgss;
  29. provides org.apache.poi.extractor.ExtractorProvider with org.apache.poi.ooxml.extractor.POIXMLExtractorFactory;
  30. provides org.apache.poi.ss.usermodel.WorkbookProvider with org.apache.poi.xssf.usermodel.XSSFWorkbookFactory;
  31. provides org.apache.poi.sl.usermodel.SlideShowProvider with org.apache.poi.xslf.usermodel.XSLFSlideShowFactory;
  32. provides org.apache.poi.sl.draw.ImageRenderer with org.apache.poi.xslf.draw.SVGImageRenderer;
  33. exports org.apache.poi.xwpf.extractor;
  34. exports org.apache.poi.xwpf.usermodel;
  35. exports org.apache.poi.xwpf.model;
  36. exports org.apache.poi.xdgf.extractor;
  37. exports org.apache.poi.xdgf.exceptions;
  38. exports org.apache.poi.xdgf.usermodel;
  39. exports org.apache.poi.xdgf.usermodel.section;
  40. exports org.apache.poi.xdgf.usermodel.section.geometry;
  41. exports org.apache.poi.xdgf.usermodel.shape;
  42. exports org.apache.poi.xdgf.usermodel.shape.exceptions;
  43. exports org.apache.poi.xdgf.xml;
  44. exports org.apache.poi.xdgf.util;
  45. exports org.apache.poi.xdgf.geom;
  46. exports org.apache.poi.ooxml;
  47. exports org.apache.poi.ooxml.dev;
  48. exports org.apache.poi.ooxml.extractor;
  49. exports org.apache.poi.ooxml.util;
  50. exports org.apache.poi.xddf.usermodel;
  51. exports org.apache.poi.xddf.usermodel.text;
  52. exports org.apache.poi.xddf.usermodel.chart;
  53. exports org.apache.poi.openxml4j.exceptions;
  54. exports org.apache.poi.openxml4j.opc;
  55. exports org.apache.poi.openxml4j.opc.internal;
  56. exports org.apache.poi.openxml4j.opc.internal.marshallers;
  57. exports org.apache.poi.openxml4j.opc.internal.unmarshallers;
  58. exports org.apache.poi.openxml4j.util;
  59. exports org.apache.poi.xssf;
  60. exports org.apache.poi.xssf.extractor;
  61. exports org.apache.poi.xssf.eventusermodel;
  62. exports org.apache.poi.xssf.usermodel;
  63. exports org.apache.poi.xssf.usermodel.helpers;
  64. exports org.apache.poi.xssf.usermodel.extensions;
  65. exports org.apache.poi.xssf.binary;
  66. exports org.apache.poi.xssf.model;
  67. exports org.apache.poi.xssf.streaming;
  68. exports org.apache.poi.xssf.util;
  69. exports org.apache.poi.xslf.draw;
  70. exports org.apache.poi.xslf.usermodel;
  71. exports org.apache.poi.xslf.model;
  72. exports org.apache.poi.xslf.util;
  73. exports org.apache.poi.poifs.crypt.dsig;
  74. exports org.apache.poi.poifs.crypt.dsig.facets;
  75. exports org.apache.poi.poifs.crypt.dsig.services;
  76. exports org.apache.poi.poifs.crypt.temp;
  77. opens org.apache.poi.openxml4j.opc to org.apache.poi.poi;
  78. /* optional dependencies for xml signatures - you need to add a require entry to your module-info
  79. * or add them via the --add-modules JVM argument */
  80. requires java.xml.crypto;
  81. requires static org.apache.santuario.xmlsec;
  82. requires static org.bouncycastle.provider;
  83. requires static org.bouncycastle.pkix;
  84. requires static org.codehaus.stax2;
  85. /* optional dependencies for slideshow rendering via PPTX2PNG */
  86. requires static batik.anim;
  87. requires static batik.awt.util;
  88. requires static batik.bridge;
  89. requires static batik.codec;
  90. requires static batik.constants;
  91. requires static batik.css;
  92. requires static batik.dom;
  93. requires static batik.ext;
  94. requires static batik.gvt;
  95. requires static batik.i18n;
  96. requires static batik.parser;
  97. requires static batik.script;
  98. requires static batik.shared.resources;
  99. requires static batik.svg.dom;
  100. requires static batik.svggen;
  101. requires static batik.svgrasterizer;
  102. requires static batik.transcoder;
  103. requires static batik.util;
  104. requires static batik.xml;
  105. requires static xmlgraphics.commons;
  106. requires static org.apache.pdfbox;
  107. requires static org.apache.fontbox;
  108. requires static de.rototor.pdfbox.graphics2d;
  109. }