Skip to content

Commit a3c5a6e

Browse files
feat : upgrade to spring boot 4 (#2)
* feat : upgrade to spring boot 4 * Adds more extensions * upgrade maven wrapper * Upgrade to spring boot * fix issue with compilation * Upgrade to SB4 * fix failures * fix more * wrapper fix * fix : issues with test case failures * upgrade * upgrade and fix * fix : failures * typo fix * upgrade to sb4 * Upgrade to SB4 * upgrade * upgrade modules * more modules * migrate more * last one for the day * Upgrade to SB4 * Upgrade to SB4 * Upgrade * upgrade * upgrade * upgrade * upgrade * upgrade * fix : compilation and build failure issue * upgrade * upgrade * ugrade client * revert and fix * fix : compilation issues * revert back
1 parent 5a6b5b2 commit a3c5a6e

617 files changed

Lines changed: 37341 additions & 47319 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

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

Lines changed: 0 additions & 117 deletions
This file was deleted.
-49.5 KB
Binary file not shown.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.3/apache-maven-3.8.3-bin.zip
2-
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
1+
wrapperVersion=3.3.4
2+
distributionType=only-script
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.15/apache-maven-3.9.15-bin.zip

0 commit comments

Comments
 (0)