This is an automated email from the ASF dual-hosted git repository. tallison pushed a commit to branch branch_1x in repository https://gitbox.apache.org/repos/asf/tika.git
commit 5d3db0f5492f541b8e92566c46cbd2e283b4ec4b Author: tallison <[email protected]> AuthorDate: Wed Dec 8 09:28:29 2021 -0500 TIKA-3601 -- remove jsoup --- tika-parsers/pom.xml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/tika-parsers/pom.xml b/tika-parsers/pom.xml index 0f612da..bbfef15 100644 --- a/tika-parsers/pom.xml +++ b/tika-parsers/pom.xml @@ -545,10 +545,12 @@ <groupId>edu.ucar</groupId> <artifactId>jj2000</artifactId> </exclusion> + <!-- we don't appear to need this TIKA-3601 --> <exclusion> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> </exclusion> + <!-- exclude to use updated version --> <exclusion> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> @@ -578,14 +580,6 @@ <artifactId>jna</artifactId> <version>5.8.0</version> </dependency> - - <!-- grib's current jsoup is vulnerable to xss - exclude and import a more modern version TIKA-2561--> - <dependency> - <groupId>org.jsoup</groupId> - <artifactId>jsoup</artifactId> - <version>1.13.1</version> - </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId>
