From efd452cebcd3ae36711790b8afc88873fb8f91ed Mon Sep 17 00:00:00 2001 From: sebr72 Date: Wed, 1 May 2024 17:50:10 +0200 Subject: [PATCH] Explain how to speed up build --- .../developer-manual/how-to-build-with-maven.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pages/documentation/developer-manual/how-to-build-with-maven.mdx b/src/pages/documentation/developer-manual/how-to-build-with-maven.mdx index b90ffd15..21ddc695 100644 --- a/src/pages/documentation/developer-manual/how-to-build-with-maven.mdx +++ b/src/pages/documentation/developer-manual/how-to-build-with-maven.mdx @@ -57,3 +57,13 @@ If you want to work on [Geocoding](/documentation/examples/geocoding/) or ### Windows If you are using Windows, you will need to use `mvnw.cmd` instead of `./mvnw` and use set instead of export to set the environment variable. + +### Important + +If your build is taking a long time, it might be due to the presence of large data/map files. To identify then delete them run: + +```bash +git clean -dnx +cd examples/ +git clean -dfx +```