From bd5569490317786126586e296179ca7e12e79187 Mon Sep 17 00:00:00 2001 From: Yoshiyuki Tabata Date: Tue, 8 Jun 2021 12:15:30 +0900 Subject: [PATCH] fix README.md of quarkus --- quarkus/README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/quarkus/README.md b/quarkus/README.md index ba22c9c4e6..ed97cda755 100644 --- a/quarkus/README.md +++ b/quarkus/README.md @@ -13,23 +13,19 @@ The module holds the codebase to run Keycloak on top of [Quarkus](https://quarku ├── The server itself, only responsible for generating the server artifacts ``` -## Activating the Module - -The module isn't enabled by default. To enable it please activate the `quarkus` profile. - ## Building To build the module and produce the artifacts to run a server: - mvn -f ../pom.xml clean install -DskipTestsuite -DskipExamples -DskipTests -Pquarkus + mvn -f ../pom.xml clean install -DskipTestsuite -DskipExamples -DskipTests ### Building the Distribution To build the module as well as the distribution packages: - mvn -f ../pom.xml clean install -DskipTestsuite -DskipExamples -DskipTests -Pquarkus,distribution + mvn -f ../pom.xml clean install -DskipTestsuite -DskipExamples -DskipTests -Pdistribution -The distribution packages (ZIP and TAR) should be available at [../distribution/server-x](../distribution/server-x/target). +The distribution packages (ZIP and TAR) should be available at [../distribution/server-x-dist](../distribution/server-x-dist/target). ## Running