Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,16 @@ lazy val jcg_doop_testadapter = project.settings(
jcg_testadapter_commons
)

lazy val jcg_tai_e_testadapter = project.settings(
commonSettings,
name := "JCG ValueCG Test Adapter",
resolvers += "soot snapshot" at "https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-snapshot/",
resolvers += "soot release" at "https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-release/",
libraryDependencies += "com.google.code.gson" % "gson" % "2.13.1",
assembly / aggregate := false,
publishArtifact := false
).dependsOn(jcg_testadapter_commons)

lazy val jcg_js_callgraph_testadapter = project.settings(
commonSettings,
name := "JCG js-callgraph Test Adapter",
Expand Down Expand Up @@ -194,6 +204,7 @@ lazy val jcg_evaluation = project.settings(
jcg_soot_testadapter,
jcg_opal_testadapter,
jcg_doop_testadapter,
jcg_tai_e_testadapter,
jcg_js_callgraph_testadapter,
jcg_jelly_testadapter,
jcg_tajs_testadapter,
Expand Down
2 changes: 1 addition & 1 deletion jcg_evaluation/src/main/scala/EvaluationHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ object CommonEvaluationConfig {
}

object EvaluationHelper {
val ALL_JAVA_ADAPTERS: List[JavaTestAdapter] = List(SootJCGAdapter, WalaJCGAdapter, OpalJCGAdatper, DoopAdapter)
val ALL_JAVA_ADAPTERS: List[JavaTestAdapter] = List(SootJCGAdapter, WalaJCGAdapter, OpalJCGAdatper, DoopAdapter, Tai_e_JCG_Adapter)
val ALL_JS_ADAPTERS: List[JSTestAdapter] =
List(JSCallGraphAdapter, Code2flowCallGraphAdapter, TAJSJCGAdapter, JellyCallGraphAdapter)
val ALL_PY_ADAPTERS: List[PyTestAdapter] =
Expand Down
1 change: 1 addition & 0 deletions jcg_tai_e_testadapter/build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// see main build file for ALL settings
Loading