Skip to content

Commit 545d1a8

Browse files
committed
update packages
Signed-off-by: Prabhu Subramanian <prabhu@appthreat.com>
1 parent 062271c commit 545d1a8

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

console/build.sbt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ enablePlugins(JavaAppPackaging)
44

55
val ScoptVersion = "4.1.0"
66
val CaskVersion = "0.10.2"
7-
val CirceVersion = "0.14.10"
8-
val ZeroturnaroundVersion = "1.17"
97

108
dependsOn(
119
Projects.semanticcpg,
@@ -21,9 +19,9 @@ libraryDependencies ++= Seq(
2119
"com.michaelpollmeier" %% "scala-repl-pp-server" % Versions.scalaReplPP,
2220
"com.github.scopt" %% "scopt" % ScoptVersion,
2321
"org.typelevel" %% "cats-effect" % Versions.cats,
24-
"io.circe" %% "circe-generic" % CirceVersion,
25-
"io.circe" %% "circe-parser" % CirceVersion,
26-
"org.zeroturnaround" % "zt-zip" % ZeroturnaroundVersion,
22+
"io.circe" %% "circe-generic" % Versions.circe,
23+
"io.circe" %% "circe-parser" % Versions.circe,
24+
"org.zeroturnaround" % "zt-zip" % Versions.ZeroturnaroundVersion,
2725
"com.lihaoyi" %% "os-lib" % "0.11.4",
2826
"com.lihaoyi" %% "pprint" % "0.9.0",
2927
"com.lihaoyi" %% "cask" % CaskVersion,

platform/frontends/c2cpg/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ dependsOn(Projects.semanticcpg, Projects.dataflowengineoss % Test, Projects.x2cp
44

55
libraryDependencies ++= Seq(
66
"org.scala-lang.modules" %% "scala-parallel-collections" % Versions.scalaParallel,
7-
"org.eclipse.platform" % "org.eclipse.equinox.common" % "3.19.200",
8-
"org.eclipse.platform" % "org.eclipse.core.resources" % "3.22.0" excludeAll(
7+
"org.eclipse.platform" % "org.eclipse.equinox.common" % "3.20.0",
8+
"org.eclipse.platform" % "org.eclipse.core.resources" % "3.22.100" excludeAll(
99
ExclusionRule(organization = "com.ibm.icu", name = "icu4j"),
1010
ExclusionRule(organization = "org.eclipse.platform", name = "org.eclipse.jface"),
1111
ExclusionRule(organization = "org.eclipse.platform", name = "org.eclipse.jface.text")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
org.eclipse.cdt jars were downloaded from
22

3-
https://download.eclipse.org/tools/cdt/releases/11.6/cdt-11.6.1/plugins/
3+
https://download.eclipse.org/tools/cdt/releases/12.0/cdt-12.0.0/plugins/

project/Versions.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ object Versions {
44
val antlr = "4.13.2"
55
val cfr = "0.152"
66
val scalatest = "3.2.19"
7-
val cats = "3.5.7"
7+
val cats = "3.6.0"
88
val json4s = "4.0.7"
99
val gradleTooling = "8.10.1"
10-
val circe = "0.14.10"
10+
val circe = "0.14.12"
1111
val requests = "0.9.0"
1212
val upickle = "4.1.0"
1313
val scalaReplPP = "0.1.85"
@@ -16,6 +16,7 @@ object Versions {
1616
val typeSafeConfig = "1.4.3"
1717
val versionSort = "1.0.13"
1818
val scalaParallel = "1.2.0"
19+
val ZeroturnaroundVersion = "1.17"
1920

2021
private def parseVersion(key: String): String = {
2122
val versionRegexp = s""".*val $key[ ]+=[ ]?"(.*?)"""".r

0 commit comments

Comments
 (0)