Skip to content

Commit 5a86647

Browse files
committed
Improve BUILDING.adoc
1 parent 0c94539 commit 5a86647

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

BUILDING.adoc

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,18 @@ printf '127.0.0.1 %s\n::1 %s\n' `hostname` `hostname` | sudo tee -a /etc/hosts
5353
----
5454
5555
[#website]
56-
== Building the website and manual
56+
== Building the website
5757
58-
You can build the website and manual as follows:
58+
You can build the website as follows:
5959
6060
[source,bash]
6161
----
62-
./mvnw site
62+
./mvnw compile # <1>
63+
./mvnw site # <2>
6364
----
65+
<1> Generate plugin descriptors that will be used to generate the plugin reference page.
66+
Descriptors are placed under `target/plugin-descriptors`.
67+
<2> Generate the website to `target/site`
6468
6569
You can view the generated website with a browser by pointing it to `target/site` directory.
6670
@@ -76,7 +80,7 @@ You can follow below steps for casual development needs:
7680
7781
You can connect your IDE to a `./mvnw test` run by
7882
79-
. Add `-Dmaven.surefire.debug` to the `./mvnw test` command
83+
. Run `./mvnw test -pl :log4j-core-test -Dtest=FooBarTest -Dmaven.surefire.debug`
8084
. Use _"Run > Attach to process"_ in IntelliJ IDEA
8185
8286
[#development-faq]

0 commit comments

Comments
 (0)