Skip to content

Commit

Permalink
update to spring boot 3.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
andifalk committed Oct 15, 2023
1 parent c19f3e6 commit 5f77204
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion intro-labs/auth-code-in-action/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.6</version>
<version>3.0.11</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
Expand Down
2 changes: 1 addition & 1 deletion labs/initial/product/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.6</version>
<version>3.0.11</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
Expand Down
2 changes: 1 addition & 1 deletion labs/initial/ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.6</version>
<version>3.0.11</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
Expand Down
2 changes: 1 addition & 1 deletion labs/solution/product/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.6</version>
<version>3.0.11</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
Expand Down
18 changes: 18 additions & 0 deletions labs/solution/ui/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Reference Solution of Sample UI Applications for the Workshop

You can find the reference solution for the UI application of the workshop here.

To start the reference solution you have to provide the target identity provider as _spring profile_.
The following profiles are supported:

* __auth0__: Use Auth0 as identity provider
* __keycloak__: Use locally installed Keycloak as identity provider
* __spring__: Use locally installed custom Spring Authorization Server

## Maven

Start using `./mvnw spring-boot:run -Dspring.profiles.active=spring`

## IntelliJ

Specify the corresponding profile in the spring boot starter configuration (if the ultimate edition of IntelliJ is used). If you use the community edition specify the profile using an environment variable like `-Dspring.profiles.active=spring`.
2 changes: 1 addition & 1 deletion labs/solution/ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.6</version>
<version>3.0.11</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
Expand Down

0 comments on commit 5f77204

Please sign in to comment.