Skip to content

Commit 5f77204

Browse files
committed
update to spring boot 3.0.11
1 parent c19f3e6 commit 5f77204

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-5
lines changed

intro-labs/auth-code-in-action/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>org.springframework.boot</groupId>
1717
<artifactId>spring-boot-starter-parent</artifactId>
18-
<version>3.0.6</version>
18+
<version>3.0.11</version>
1919
<relativePath/>
2020
<!-- lookup parent from repository -->
2121
</parent>

labs/initial/product/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>org.springframework.boot</groupId>
1717
<artifactId>spring-boot-starter-parent</artifactId>
18-
<version>3.0.6</version>
18+
<version>3.0.11</version>
1919
<relativePath/>
2020
<!-- lookup parent from repository -->
2121
</parent>

labs/initial/ui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>3.0.6</version>
17+
<version>3.0.11</version>
1818
<relativePath/>
1919
<!-- lookup parent from repository -->
2020
</parent>

labs/solution/product/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>org.springframework.boot</groupId>
1717
<artifactId>spring-boot-starter-parent</artifactId>
18-
<version>3.0.6</version>
18+
<version>3.0.11</version>
1919
<relativePath/>
2020
<!-- lookup parent from repository -->
2121
</parent>

labs/solution/ui/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Reference Solution of Sample UI Applications for the Workshop
2+
3+
You can find the reference solution for the UI application of the workshop here.
4+
5+
To start the reference solution you have to provide the target identity provider as _spring profile_.
6+
The following profiles are supported:
7+
8+
* __auth0__: Use Auth0 as identity provider
9+
* __keycloak__: Use locally installed Keycloak as identity provider
10+
* __spring__: Use locally installed custom Spring Authorization Server
11+
12+
## Maven
13+
14+
Start using `./mvnw spring-boot:run -Dspring.profiles.active=spring`
15+
16+
## IntelliJ
17+
18+
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`.

labs/solution/ui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>3.0.6</version>
17+
<version>3.0.11</version>
1818
<relativePath/>
1919
<!-- lookup parent from repository -->
2020
</parent>

0 commit comments

Comments
 (0)