Skip to content

Commit

Permalink
Fixing how to build extension quickstarts
Browse files Browse the repository at this point in the history
Closes #468
  • Loading branch information
pedroigor committed Sep 14, 2023
1 parent df8a934 commit 0e12f14
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 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,7 +85,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
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class ExternalAppAuthenticator implements Authenticator {

private static final Logger logger = Logger.getLogger(ExternalAppAuthenticator.class);

public static final String DEFAULT_EXTERNAL_APP_URL = "http://127.0.0.1:8080/action-token-responder-example/external-action.jsp?token={TOKEN}";
public static final String DEFAULT_EXTERNAL_APP_URL = "http://127.0.0.1:8080/wildfly_action-token-responder-example_action-token-responder-example/external-action.jsp?token={TOKEN}";

public static final String DEFAULT_APPLICATION_ID = "application-id";

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

0 comments on commit 0e12f14

Please sign in to comment.