From bf2bfcbbeddbcf4cb20392543a36f4895a783d20 Mon Sep 17 00:00:00 2001 From: Prabhu Subramanian Date: Mon, 18 Nov 2024 13:29:03 +0000 Subject: [PATCH] Update commons-io which is needed for apk Signed-off-by: Prabhu Subramanian --- platform/frontends/jimple2cpg/build.sbt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/platform/frontends/jimple2cpg/build.sbt b/platform/frontends/jimple2cpg/build.sbt index 6cd82e9..faaf57b 100644 --- a/platform/frontends/jimple2cpg/build.sbt +++ b/platform/frontends/jimple2cpg/build.sbt @@ -4,6 +4,7 @@ dependsOn(Projects.dataflowengineoss, Projects.x2cpg % "compile->compile;test->t libraryDependencies ++= Seq( "io.appthreat" %% "cpg2" % Versions.cpg, + "commons-io" % "commons-io" % "2.17.0", "org.soot-oss" % "soot" % "4.6.0", "org.scala-lang.modules" % "scala-asm" % "9.7.0-scala-2", "org.ow2.asm" % "asm" % "9.7.1", @@ -13,10 +14,6 @@ libraryDependencies ++= Seq( "org.scalatest" %% "scalatest" % Versions.scalatest % Test ) -excludeDependencies ++= Seq( - ExclusionRule("commons-io", "commons-io") -) - enablePlugins(JavaAppPackaging, LauncherJarPlugin) trapExit := false Test / fork := true