From ca903f1cb4d1966a3ebfad5af14ca317fa73dbd7 Mon Sep 17 00:00:00 2001 From: Andrew Nowak Date: Wed, 4 Dec 2024 15:41:06 +0000 Subject: [PATCH] upgrade to the latest version of tika 1.x there are 2.x and now 3.x versions, but i have not investigated the ease of migration, but this at least moves beyond the version with a high vulnerability warning --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index c1e5607505..d1f5c10311 100644 --- a/build.sbt +++ b/build.sbt @@ -129,7 +129,7 @@ lazy val cropper = playProject("cropper", 9006) lazy val imageLoader = playProject("image-loader", 9003).settings { libraryDependencies ++= Seq( - "org.apache.tika" % "tika-core" % "1.20", + "org.apache.tika" % "tika-core" % "1.28.5", "com.drewnoakes" % "metadata-extractor" % "2.17.0" ) }