Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README about build tools #9545

Merged
merged 7 commits into from
Apr 5, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,25 @@ Project documentation is available on the Jetty Eclipse website.
Building
========

To build, use:
To build, use [Apache Maven 3.8.0](https://maven.apache.org/) (or better):

Fast Build:
joakime marked this conversation as resolved.
Show resolved Hide resolved

``` shell
mvn clean install
mvn -Pci clean install -DskipTests
```

Full Build with All Tests:

``` shell
mvn clean install
```

Optional build tools:

* [`graphviz`](https://graphviz.org/) - used by asciidoctor in the jetty-documentation build to produce various graphs
* [`Docker`](https://www.docker.com/) - used to run some integration tests for testing third party integrations

joakime marked this conversation as resolved.
Show resolved Hide resolved
Eclipse Jetty will be built in `jetty-home/target/jetty-home`.
joakime marked this conversation as resolved.
Show resolved Hide resolved

The first build may take a longer than expected as Maven downloads all the dependencies.
Expand Down