This is an automated email from the ASF dual-hosted git repository. tilman pushed a commit to branch branch_2x in repository https://gitbox.apache.org/repos/asf/tika.git
commit f14110dff087eaf308b7d86dd25e3b6e365eccca Author: Tilman Hausherr <[email protected]> AuthorDate: Mon Jan 27 10:12:58 2025 +0100 TIKA-4239: remove explicit version declaration --- .../tika-parsers-extended/tika-parser-scientific-module/pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/pom.xml b/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/pom.xml index f48a97c96..b8ee22ad8 100644 --- a/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/pom.xml +++ b/tika-parsers/tika-parsers-extended/tika-parser-scientific-module/pom.xml @@ -105,6 +105,15 @@ May the gods of dependency management fix this in the future. <build> <plugins> + <!-- because of protobuf 3.25.6. The actual problem is in netcdf4. Might be a false alarm, + because https://github.com/protocolbuffers/protobuf/security/advisories/GHSA-h4h5-3hr4-j3g2 + mentions older versions of protobuf --> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <argLine>-Dcom.google.protobuf.use_unsafe_pre22_gencode</argLine> + </configuration> + </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId>
