From 3f8ce0215002d2a3f4f145f9979ef7301f78a160 Mon Sep 17 00:00:00 2001 From: Mark Owens Date: Wed, 28 Feb 2024 13:15:43 -0500 Subject: [PATCH] Update building.md page (#417) Update building.md page to reflect the new format of the created tar.gz file. Changed from accumulo-*-SNAPSHOT-dist.tar.gz to accumulo-*-SNAPSHOT-bin.tar.gz. Also remove the -Passemble option from the mvn package command as it is not necessary. --- contributor/building.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributor/building.md b/contributor/building.md index b281a4cb3..5771bf7d0 100644 --- a/contributor/building.md +++ b/contributor/building.md @@ -18,9 +18,9 @@ You should familiarize yourself with the [Maven Build Lifecycle][lifecycle], as To build from source (for example, to deploy): - mvn package -Passemble + mvn package -This will create a file `accumulo-*-SNAPSHOT-dist.tar.gz` in the assemble/target directory. Optionally, append `-DskipTests` if you want to skip the build tests. +This will create a file `accumulo-*-SNAPSHOT-bin.tar.gz` in the assemble/target directory. Optionally, append `-DskipTests` if you want to skip the build tests. To build your branch before submitting a pull request, you'll probably want to run some basic "sunny-day" integration tests to ensure you haven't made any grave errors, as well as `checkstyle` and `findbugs`: