From 9e77fff94a58a953ddd1938357bc2cac63bf29de Mon Sep 17 00:00:00 2001 From: erwan-serandour Date: Fri, 1 Nov 2024 16:48:09 +0100 Subject: [PATCH] SCANMAVEN-239 Update the integration Tests documentation to include the property-dump-plugin (#252) Add a new step in develop.md before running Integration Tests: package the property-dump-plugin. --- develop.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/develop.md b/develop.md index 109af3e3..d62e31e2 100644 --- a/develop.md +++ b/develop.md @@ -31,4 +31,6 @@ For example, in order to debug the test [java-compiler-executable](src/it/java-c *Note* that you have to run `mvn invoker:install` to debug the latest changes in your code! #### Integration Tests -The Integration tests are located in its, and they can be run as a separate Maven project: `cd its && mvn verify` +The Integration tests are located in `its`. +Before running them, you have to package the `property-dump-plugin` by running the following command from the root of the project: `mvn -f property-dump-plugin/pom.xml clean package`. +Then, they can be run as a separate Maven project: `cd its && mvn verify`