This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/release-2.x by this push:
new f0526bce4e LOG4J2-3573 Remove mention of unsupported parallel build.
f0526bce4e is described below
commit f0526bce4ec91bbc9b1b04340e8de56beb7817e8
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Thu Aug 18 14:40:21 2022 +0200
LOG4J2-3573 Remove mention of unsupported parallel build.
---
BUILDING.md | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/BUILDING.md b/BUILDING.md
index f988246a40..fcb8c7d876 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -37,9 +37,9 @@ You can build and verify the sources as follows:
./mvnw verify
`verify` goal runs validation and test steps next to building (i.e.,
compiling) the sources.
-To speed up the build, you can skip verification and try increasing the
concurrency:
+To speed up the build, you can skip verification:
- ./mvwn -DskipTests -T8C package
+ ./mvwn -DskipTests package
If you want to install generated artifacts to your local Maven repository,
replace above `verify` and/or `package` goals with `install`.
@@ -51,9 +51,7 @@ many unit tests may execute slow due to DNS lookups to
translate your hostname t
[`InetAddress.getLocalHost()`](http://docs.oracle.com/javase/7/docs/api/java/net/InetAddress.html#getLocalHost()).
To remedy this, you can execute the following:
-```
-printf '127.0.0.1 %s\n::1 %s\n' `hostname` `hostname` | sudo tee -a /etc/hosts
-```
+ printf '127.0.0.1 %s\n::1 %s\n' `hostname` `hostname` | sudo tee -a
/etc/hosts
<a name="website"></a>
# Building the website and manual