]> source.dussan.org Git - poi.git/commitdiff
java 17 build issue
authorPJ Fanning <fanningpj@apache.org>
Tue, 22 Feb 2022 01:56:40 +0000 (01:56 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 22 Feb 2022 01:56:40 +0000 (01:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898301 13f79535-47bb-0310-9956-ffa450edef68

poi/src/test/java/org/apache/poi/hssf/extractor/TestOldExcelExtractor.java
poi/src/test/java/org/apache/poi/poifs/dev/TestPOIFSDump.java

index a2bf77ba6416a508d40304e39eb69264927922e0..2c4e3f89f477f67a9d84af832bb0b0fe7dbc914f 100644 (file)
@@ -43,6 +43,7 @@ import org.apache.poi.poifs.filesystem.OfficeXmlFileException;
 import org.apache.poi.poifs.filesystem.POIFSFileSystem;
 import org.apache.poi.util.LocaleUtil;
 import org.apache.poi.util.RecordFormatException;
+import org.apache.poi.util.SuppressForbidden;
 import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
@@ -50,6 +51,7 @@ import org.junit.jupiter.api.Test;
  * Unit tests for the Excel 5/95 and Excel 4 (and older) text
  *  extractor
  */
+@SuppressForbidden("tests java.security features deprecated in java 17 - no other option though")
 final class TestOldExcelExtractor {
     private static OldExcelExtractor createExtractor(String sampleFileName) throws IOException {
         File file = HSSFTestDataSamples.getSampleFile(sampleFileName);
index d4bf0d89d22f9cec0fa87511de4d81638e6fbc52..1b93047148c790b06b3bd8b9ac909db8b2d94edd 100644 (file)
@@ -35,6 +35,7 @@ import org.apache.poi.poifs.filesystem.NotOLE2FileException;
 import org.apache.poi.poifs.filesystem.OfficeXmlFileException;
 import org.apache.poi.poifs.filesystem.POIFSFileSystem;
 import org.apache.poi.poifs.property.PropertyTable;
+import org.apache.poi.util.SuppressForbidden;
 import org.apache.poi.util.TempFile;
 import org.junit.jupiter.api.AfterAll;
 import org.junit.jupiter.api.AfterEach;
@@ -42,6 +43,7 @@ import org.junit.jupiter.api.Assumptions;
 import org.junit.jupiter.api.BeforeAll;
 import org.junit.jupiter.api.Test;
 
+@SuppressForbidden("tests java.security features deprecated in java 17 - no other option though")
 public class TestPOIFSDump {
 
     private static PrintStream SYSTEM;