Skip to content

Commit

Permalink
Remove jackson data-bind (#89)
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu authored Sep 20, 2024
1 parent 56d3e2a commit 3a57a72
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 287 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "chen"
ThisBuild / organization := "io.appthreat"
ThisBuild / version := "2.1.7"
ThisBuild / version := "2.1.8"
ThisBuild / scalaVersion := "3.5.0"

val cpgVersion = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"downloadUrl": "https://github.com/AppThreat/chen",
"issueTracker": "https://github.com/AppThreat/chen/issues",
"name": "chen",
"version": "2.1.7",
"version": "2.1.8",
"description": "Code Hierarchy Exploration Net (chen) is an advanced exploration toolkit for your application source code and its dependency hierarchy.",
"applicationCategory": "code-analysis",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "2.1.7" %}
{% set version = "2.1.8" %}

package:
name: chen
Expand Down
1 change: 0 additions & 1 deletion platform/frontends/jssrc2cpg/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ astGenVersion := appProperties.value.getString("jssrc2cpg.astgen_version")
libraryDependencies ++= Seq(
"io.appthreat" %% "cpg2" % Versions.cpg,
"com.lihaoyi" %% "upickle" % Versions.upickle,
"com.fasterxml.jackson.core" % "jackson-databind" % "2.17.2",
"com.typesafe" % "config" % "1.4.3",
"com.michaelpollmeier" % "versionsort" % "1.0.13",
"org.scalatest" %% "scalatest" % Versions.scalatest % Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import io.appthreat.jssrc2cpg.passes.{
BuiltinTypesPass,
ConfigPass,
ConstClosurePass,
DependenciesPass,
ImportResolverPass,
ImportsPass,
JavaScriptInheritanceNamePass,
Expand Down Expand Up @@ -49,7 +48,6 @@ class JsSrc2Cpg extends X2CpgFrontend[Config]:
new TypeNodePass(astCreationPass.allUsedTypes(), cpg).createAndApply()
new JsMetaDataPass(cpg, hash, config.inputPath).createAndApply()
new BuiltinTypesPass(cpg).createAndApply()
new DependenciesPass(cpg, config).createAndApply()
new ConfigPass(cpg, config, report).createAndApply()
new PrivateKeyFilePass(cpg, config, report).createAndApply()
new ImportsPass(cpg).createAndApply()
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "appthreat-chen"
version = "2.1.7"
version = "2.1.8"
description = "Code Hierarchy Exploration Net (chen)"
authors = ["Team AppThreat <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 3a57a72

Please sign in to comment.