From 22ba760b9fac1ee4b73c7211336c394d42676b6f Mon Sep 17 00:00:00 2001 From: Yogya Tulip Gamage <47789154+yogyagamage@users.noreply.github.com> Date: Sat, 14 Sep 2024 11:59:53 -0400 Subject: [PATCH] Update README.md --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index a4d4a83..c1c92db 100644 --- a/README.md +++ b/README.md @@ -25,16 +25,19 @@ better-informed decisions when managing and updating dependencies. dummy tests without assertions to invoke all reachable APIs. It uses the [Spoon](https://github.com/INRIA/spoon) library for generating these API invocations. [More info](testGenerator/README.md) -**Preprocessor**: Theo uses the [maven-lockfile](https://github.com/chains-project/maven-lockfile) to create a lockfile -for the project. The preprocessor also temporarily adds project dependencies to the classpath of the monitor by modifying -the pom.xml. [More info](preprocessor/README.md) +**Preprocessor**: The preprocessor temporarily adds project dependencies to the classpath of the monitor by modifying +the pom.xml. It uses the [maven-lockfile](https://github.com/chains-project/maven-lockfile) to get more information about +the resolved dependencies. [More info](preprocessor/README.md) -**Monitor**: Theo uses [Java Flight Recorder (JFR)](https://openjdk.org/jeps/328) to capture runtime data during program -execution. Then, a report is generated with access privilege data collected by JFR. [More info](monitor/README.md) +**Monitor**: The Monitor captures runtime data during program execution using [Java Flight Recorder (JFR)](https://openjdk.org/jeps/328). +Then, it generates a report with access privilege data collected by the JFR. [More info](monitor/README.md) ## Usage -To run the tool, execute the [`run_workflow.sh`](run_workflow.sh). +To run the tool, execute the `preprocessor` and the `monitor` following the steps given in [`preprocessor/README.md`](preprocessor/README.md) +and [`monitor/README.md`](monitor/README.md) respectively. + +Alternatively, you can execute the [`run_workflow.sh`](run_workflow.sh). Here's a breakdown of what it does. @@ -46,9 +49,6 @@ Here's a breakdown of what it does. - Runs the monitor and generates the reports - Resets the pom files -Alternatively, execute the `preprocessor` and the `monitor` following the steps given in [`preprocessor/README.md`](preprocessor/README.md) -and [`monitor/README.md`](monitor/README.md) respectively. - ## Work in progress - Use [classport](https://github.com/chains-project/classport) instead of adding all the dependencies to the pom file to get the dependency information at runtime.