This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps-site.git
The following commit(s) were added to refs/heads/main by this push:
new efd452c Explain how to speed up build
efd452c is described below
commit efd452cebcd3ae36711790b8afc88873fb8f91ed
Author: sebr72 <[email protected]>
AuthorDate: Wed May 1 17:50:10 2024 +0200
Explain how to speed up build
---
.../documentation/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 b90ffd1..21ddc69 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
+```