Skip to content

Commit 00c22bc

Browse files
authored
Merge pull request #2333 from rajadilipkolli-learning/master
feat : upgrade to spring boot 4
2 parents 5a6b5b2 + 77e6bc6 commit 00c22bc

631 files changed

Lines changed: 37873 additions & 47404 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/devcontainer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,17 @@
1111
"installMaven": "true",
1212
"installGradle": "false"
1313
},
14-
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
14+
"ghcr.io/devcontainers/features/docker-in-docker:2": {
15+
"version": "latest",
16+
"moby": false
17+
}
1518
},
1619
"customizations": {
1720
"vscode": {
1821
"extensions": [
19-
"vscjava.vscode-lombok"
22+
"vscjava.vscode-lombok",
23+
"vscjava.vscode-java-pack",
24+
"vmware.vscode-boot-dev-pack"
2025
]
2126
}
2227
}

.github/workflows/boot-data-cassandra.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818

1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: boot-data-cassandra
2023

2124
steps:
2225
- uses: actions/checkout@v6
@@ -29,6 +32,4 @@ jobs:
2932
distribution: 'temurin'
3033
cache: 'maven'
3134
- name: Build with Maven
32-
run: |
33-
cd boot-data-cassandra
34-
mvn -B package --file pom.xml
35+
run: ./mvnw -B package --file pom.xml

.github/workflows/boot-data-elasticsearch.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818

1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: boot-data-elasticsearch
2023

2124
steps:
2225
- uses: actions/checkout@v6
@@ -29,6 +32,4 @@ jobs:
2932
distribution: 'temurin'
3033
cache: 'maven'
3134
- name: Build with Maven
32-
run: |
33-
cd boot-data-elasticsearch
34-
mvn -B package --file pom.xml
35+
run: ./mvnw -B package --file pom.xml

.github/workflows/boot-data-neo4j.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818

1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: boot-data-neo4j
2023

2124
steps:
2225
- uses: actions/checkout@v6
@@ -29,6 +32,4 @@ jobs:
2932
distribution: 'temurin'
3033
cache: 'maven'
3134
- name: Build with Maven
32-
run: |
33-
cd boot-data-neo4j
34-
mvn -B package --file pom.xml
35+
run: ./mvnw -B package --file pom.xml

.github/workflows/boot-exception-handler.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818

1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: boot-exception-handler
2023

2124
steps:
2225
- uses: actions/checkout@v6
@@ -27,13 +30,6 @@ jobs:
2730
with:
2831
java-version: '21'
2932
distribution: 'temurin'
30-
cache: 'maven'
31-
- name: Start up databases via Docker Compose
32-
run: |
33-
docker compose up -d mongodb
34-
sleep 5
35-
docker ps -a
33+
cache: 'maven'
3634
- name: Build with Maven
37-
run: |
38-
cd boot-exception-handler
39-
mvn -B package --file pom.xml
35+
run: ./mvnw -B package --file pom.xml

.github/workflows/boot-mvc-mustache.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818

1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: boot-mvc-mustache
2023

2124
steps:
2225
- uses: actions/checkout@v6
@@ -29,6 +32,4 @@ jobs:
2932
distribution: 'temurin'
3033
cache: 'maven'
3134
- name: Build with Maven
32-
run: |
33-
cd boot-mvc-mustache
34-
mvn -B package --file pom.xml
35+
run: ./mvnw -B package --file pom.xml

.github/workflows/boot-pulsar.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818

1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: boot-pulsar
2023

2124
steps:
2225
- uses: actions/checkout@v6
@@ -29,6 +32,4 @@ jobs:
2932
distribution: 'temurin'
3033
cache: 'maven'
3134
- name: Build with Maven
32-
run: |
33-
cd boot-pulsar
34-
mvn -B package --file pom.xml
35+
run: ./mvnw -B package --file pom.xml
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: spring-reactive-boot-reactor-kafka
2+
3+
on:
4+
push:
5+
paths:
6+
- "boot-reactor-kafka/**"
7+
branches: [ master ]
8+
pull_request:
9+
paths:
10+
- "boot-reactor-kafka/**"
11+
types:
12+
- opened
13+
- synchronize
14+
- reopened
15+
16+
jobs:
17+
build:
18+
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- uses: actions/checkout@v6
23+
with:
24+
fetch-depth: 0
25+
- name: Set up JDK
26+
uses: actions/setup-java@v5
27+
with:
28+
java-version: '21'
29+
distribution: 'temurin'
30+
cache: 'maven'
31+
- name: Build Sender with Maven
32+
run: |
33+
cd boot-reactor-kafka/sender
34+
mvn -B package --file pom.xml
35+
- name: Build Receiver with Maven
36+
run: |
37+
cd boot-reactor-kafka/receiver
38+
mvn -B package --file pom.xml
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: spring-reactive-boot-reactor-rabbitmq
2+
3+
on:
4+
push:
5+
paths:
6+
- "boot-reactor-rabbitmq/**"
7+
branches: [ master ]
8+
pull_request:
9+
paths:
10+
- "boot-reactor-rabbitmq/**"
11+
types:
12+
- opened
13+
- synchronize
14+
- reopened
15+
16+
jobs:
17+
build:
18+
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- uses: actions/checkout@v6
23+
with:
24+
fetch-depth: 0
25+
- name: Set up JDK
26+
uses: actions/setup-java@v5
27+
with:
28+
java-version: '21'
29+
distribution: 'temurin'
30+
cache: 'maven'
31+
- name: Build Sender with Maven
32+
run: |
33+
cd boot-reactor-rabbitmq/sender
34+
mvn -B package --file pom.xml
35+
- name: Build Receiver with Maven
36+
run: |
37+
cd boot-reactor-rabbitmq/receiver
38+
mvn -B package --file pom.xml

boot-data-cassandra/.mvn/wrapper/MavenWrapperDownloader.java

Lines changed: 0 additions & 117 deletions
This file was deleted.

0 commit comments

Comments
 (0)