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 7.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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.scratchpad {
  16. requires transitive org.apache.poi.poi;
  17. requires java.desktop;
  18. requires commons.math3;
  19. requires org.apache.logging.log4j;
  20. uses org.apache.poi.sl.usermodel.MetroShapeProvider;
  21. provides org.apache.poi.extractor.ExtractorProvider with org.apache.poi.extractor.ole2.OLE2ScratchpadExtractorFactory;
  22. provides org.apache.poi.sl.usermodel.SlideShowProvider with org.apache.poi.hslf.usermodel.HSLFSlideShowFactory;
  23. provides org.apache.poi.sl.draw.ImageRenderer with org.apache.poi.hwmf.draw.HwmfImageRenderer, org.apache.poi.hemf.draw.HemfImageRenderer;
  24. exports org.apache.poi.hmef;
  25. exports org.apache.poi.hmef.dev;
  26. exports org.apache.poi.hmef.extractor;
  27. exports org.apache.poi.hmef.attribute;
  28. exports org.apache.poi.hdgf;
  29. exports org.apache.poi.hdgf.dev;
  30. exports org.apache.poi.hdgf.streams;
  31. exports org.apache.poi.hdgf.extractor;
  32. exports org.apache.poi.hdgf.pointers;
  33. exports org.apache.poi.hdgf.exceptions;
  34. exports org.apache.poi.hdgf.chunks;
  35. exports org.apache.poi.hwpf;
  36. exports org.apache.poi.hwpf.dev;
  37. exports org.apache.poi.hwpf.sprm;
  38. exports org.apache.poi.hwpf.converter;
  39. exports org.apache.poi.hwpf.extractor;
  40. exports org.apache.poi.hwpf.usermodel;
  41. exports org.apache.poi.hwpf.model;
  42. exports org.apache.poi.hwpf.model.io;
  43. exports org.apache.poi.hwpf.model.types;
  44. exports org.apache.poi.hwmf.record;
  45. exports org.apache.poi.hwmf.draw;
  46. exports org.apache.poi.hwmf.usermodel;
  47. exports org.apache.poi.extractor.ole2;
  48. exports org.apache.poi.hpbf;
  49. exports org.apache.poi.hpbf.dev;
  50. exports org.apache.poi.hpbf.extractor;
  51. exports org.apache.poi.hpbf.model;
  52. exports org.apache.poi.hpbf.model.qcbits;
  53. exports org.apache.poi.hslf.dev;
  54. exports org.apache.poi.hslf.record;
  55. exports org.apache.poi.hslf.extractor;
  56. exports org.apache.poi.hslf.exceptions;
  57. exports org.apache.poi.hslf.usermodel;
  58. exports org.apache.poi.hslf.blip;
  59. exports org.apache.poi.hslf.model;
  60. exports org.apache.poi.hslf.model.textproperties;
  61. exports org.apache.poi.hslf.util;
  62. exports org.apache.poi.hssf.converter;
  63. exports org.apache.poi.hsmf;
  64. exports org.apache.poi.hsmf.dev;
  65. exports org.apache.poi.hsmf.datatypes;
  66. exports org.apache.poi.hsmf.extractor;
  67. exports org.apache.poi.hsmf.exceptions;
  68. exports org.apache.poi.hsmf.parsers;
  69. exports org.apache.poi.hemf.record.emf;
  70. exports org.apache.poi.hemf.record.emfplus;
  71. exports org.apache.poi.hemf.draw;
  72. exports org.apache.poi.hemf.usermodel;
  73. // test specific exports
  74. requires org.junit.jupiter.api;
  75. requires org.junit.jupiter.params;
  76. requires org.mockito;
  77. exports org.apache.poi.hemf.hemfplus.extractor to org.junit.platform.commons;
  78. exports org.apache.poi.hslf to org.junit.platform.commons;
  79. exports org.apache.poi.hwmf to org.junit.platform.commons;
  80. exports org.apache.poi.hwpf.util to org.junit.platform.commons;
  81. opens org.apache.poi.hwpf.model to org.mockito, org.junit.platform.commons;
  82. opens org.apache.poi.hwpf.model.types to org.mockito, org.junit.platform.commons;
  83. opens org.apache.poi.hmef to org.junit.platform.commons;
  84. opens org.apache.poi.hmef.dev to org.junit.platform.commons;
  85. opens org.apache.poi.hmef.extractor to org.junit.platform.commons;
  86. opens org.apache.poi.hmef.attribute to org.junit.platform.commons;
  87. opens org.apache.poi.hdgf to org.junit.platform.commons;
  88. opens org.apache.poi.hdgf.dev to org.junit.platform.commons;
  89. opens org.apache.poi.hdgf.streams to org.junit.platform.commons;
  90. opens org.apache.poi.hdgf.extractor to org.junit.platform.commons;
  91. opens org.apache.poi.hdgf.pointers to org.junit.platform.commons;
  92. opens org.apache.poi.hdgf.exceptions to org.junit.platform.commons;
  93. opens org.apache.poi.hdgf.chunks to org.junit.platform.commons;
  94. opens org.apache.poi.hwpf to org.junit.platform.commons;
  95. opens org.apache.poi.hwpf.dev to org.junit.platform.commons;
  96. opens org.apache.poi.hwpf.sprm to org.junit.platform.commons;
  97. opens org.apache.poi.hwpf.converter to org.junit.platform.commons;
  98. opens org.apache.poi.hwpf.extractor to org.junit.platform.commons;
  99. opens org.apache.poi.hwpf.usermodel to org.junit.platform.commons;
  100. opens org.apache.poi.hwpf.model.io to org.junit.platform.commons;
  101. opens org.apache.poi.hwpf.util to org.junit.platform.commons;
  102. opens org.apache.poi.hwmf to org.junit.platform.commons;
  103. opens org.apache.poi.hwmf.record to org.junit.platform.commons;
  104. opens org.apache.poi.hwmf.draw to org.junit.platform.commons;
  105. opens org.apache.poi.hwmf.usermodel to org.junit.platform.commons;
  106. opens org.apache.poi.extractor.ole2 to org.junit.platform.commons;
  107. opens org.apache.poi.hpbf to org.junit.platform.commons;
  108. opens org.apache.poi.hpbf.dev to org.junit.platform.commons;
  109. opens org.apache.poi.hpbf.extractor to org.junit.platform.commons;
  110. opens org.apache.poi.hpbf.model to org.junit.platform.commons;
  111. opens org.apache.poi.hpbf.model.qcbits to org.junit.platform.commons;
  112. opens org.apache.poi.hslf to org.junit.platform.commons;
  113. opens org.apache.poi.hslf.dev to org.junit.platform.commons;
  114. opens org.apache.poi.hslf.record to org.junit.platform.commons;
  115. opens org.apache.poi.hslf.extractor to org.junit.platform.commons;
  116. opens org.apache.poi.hslf.exceptions to org.junit.platform.commons;
  117. opens org.apache.poi.hslf.usermodel to org.junit.platform.commons;
  118. opens org.apache.poi.hslf.blip to org.junit.platform.commons;
  119. opens org.apache.poi.hslf.model to org.junit.platform.commons;
  120. opens org.apache.poi.hslf.model.textproperties to org.junit.platform.commons;
  121. opens org.apache.poi.hslf.util to org.junit.platform.commons;
  122. opens org.apache.poi.hssf.converter to org.junit.platform.commons;
  123. opens org.apache.poi.hsmf to org.junit.platform.commons;
  124. opens org.apache.poi.hsmf.dev to org.junit.platform.commons;
  125. opens org.apache.poi.hsmf.datatypes to org.junit.platform.commons;
  126. opens org.apache.poi.hsmf.extractor to org.junit.platform.commons;
  127. opens org.apache.poi.hsmf.exceptions to org.junit.platform.commons;
  128. opens org.apache.poi.hsmf.parsers to org.junit.platform.commons;
  129. opens org.apache.poi.hemf.record.emf to org.junit.platform.commons;
  130. opens org.apache.poi.hemf.record.emfplus to org.junit.platform.commons;
  131. opens org.apache.poi.hemf.hemfplus.extractor to org.junit.platform.commons;
  132. opens org.apache.poi.hemf.draw to org.junit.platform.commons;
  133. opens org.apache.poi.hemf.usermodel to org.junit.platform.commons;
  134. }