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

Fixing how to build extension quickstarts #476

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions extension/action-token-authenticator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Build and Deploy the Quickstart
To build the provider, run the following maven command:

````
mvn clean install
mvn -Pextension -DskipTests clean install
````

To install the provider, copy the `target/action-token-example.jar` JAR file to the `providers` directory of the server distribution.
Expand Down Expand Up @@ -85,9 +85,9 @@ Integration test of the Quickstart
1. Make sure you have an Keycloak server running with an admin user in the `master` realm or use the provided docker image. Also make sure that server
was started with the parameters as described above
2. You need to have Chrome browser installed and updated to the latest version
3. Run `mvn clean install -Djakarta`
3. Run `mvn -Pextension clean install`

After running the above command, the WAR file will be located in
After running the above command, the WAR file to deploy the external service will be located in
`target/deployments/wildfly_action-token-responder-example_action-token-responder-example.war`.

Among other things, the test did 2 things:
Expand Down
4 changes: 2 additions & 2 deletions extension/action-token-required-action/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Build and Deploy the Quickstart
To build the provider, run the following maven command:

````
mvn clean install
mvn -Pextension clean install
````

To install the provider, copy the `target/action-token-req-action-example.jar` JAR file to the `providers` directory of the server distribution.
Expand Down Expand Up @@ -84,7 +84,7 @@ Integration test of the Quickstart
1. Make sure you have an Keycloak server running with an admin user in the `master` realm or use the provided docker image. Also make sure that server
was started with the parameters as described above
2. You need to have Chrome browser installed and updated to the latest version
3. Run `mvn clean install -Djakarta`
3. Run `mvn -Pextension clean install`

After running the above command, the WAR file will be located in
`target/deployments/wildfly_action-token-responder-example_action-token-responder-example.war`.
Expand Down
2 changes: 1 addition & 1 deletion extension/event-listener-sysout/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Build and Deploy the Quickstart
To build the provider, run the following maven command:

````
mvn clean install
mvn -Pextension clean install
````

To install the provider, copy the target/event-listener-sysout.jar JAR file to the `providers` directory of the server distribution.
Expand Down
2 changes: 1 addition & 1 deletion extension/event-store-mem/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Build and Deploy the Quickstart
To build the provider, run the following maven command:

````
mvn clean install
mvn -Pextension clean install
````

To install the provider, copy the target/event-store-mem.jar JAR file to the `providers` directory of the server distribution.
Expand Down
2 changes: 1 addition & 1 deletion extension/extend-account-console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Configuration in <span>Keycloak</span>
To build the provider, run the following maven command:

````
mvn clean install
mvn -Pextension clean install
````

To install the provider, copy the `target/keycloak-man-theme.jar` JAR file to the `providers` directory of the server distribution.
Expand Down
2 changes: 1 addition & 1 deletion extension/user-storage-jpa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ you make sure the persistence unit will be using the correct datasource.
To build the provider, run the following maven command:

````
mvn clean install
mvn -Pextension clean install
````

To install the provider, copy the target/user-storage-jpa-example.jar JAR file to the `providers` directory of the server distribution.
Expand Down
2 changes: 1 addition & 1 deletion extension/user-storage-simple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Build and Deploy the Quickstart
To build the provider, run the following maven command:

````
mvn clean install
mvn -Pextension clean install
````

To install the provider, copy the target/user-storage-properties-example.jar JAR file to the `providers` directory of the server distribution.
Expand Down
Loading