Skip to content

Commit 0bae38e

Browse files
Update dependency maven to v3.9.3 (#94)
* Update dependency maven to v3.9.3 * fixes issue with aop-advice * fixes issue with integration tests * fixes issues with integration tests * fixes build issue * fixes build issue * fixes build issue with api-validation * fixes composite key issue * upgrade to inhouse maven wrapper * fixes imports issue * fixes issue with spring jpa auditing * fixes hibernate tests * fixes issue with logging * fixes issue with jsp and thymeleaf --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Raja Dilip Kolli <[email protected]>
1 parent db57d13 commit 0bae38e

File tree

173 files changed

+6902
-4476
lines changed

Some content is hidden

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

173 files changed

+6902
-4476
lines changed

.github/workflows/spring-aop-advice-examples.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: spring-aop-advice-examples
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -29,6 +32,4 @@ jobs:
2932
distribution: "adopt"
3033
cache: "maven"
3134
- name: Build and analyze
32-
run: |
33-
cd spring-aop-advice-examples
34-
mvn clean package
35+
run: ./mvnw clean package

.github/workflows/spring-boot-crud-rest.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: spring-boot-crud-rest
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -28,13 +31,5 @@ jobs:
2831
java-version: 17
2932
distribution: "adopt"
3033
cache: "maven"
31-
- name: Start up databases via docker compose
32-
run: |
33-
cd spring-boot-crud-rest
34-
docker compose up -d
35-
sleep 15
36-
docker ps -a
3734
- name: Build and analyze
38-
run: |
39-
cd spring-boot-crud-rest
40-
mvn clean package
35+
run: ./mvnw clean package

.github/workflows/springboot-async-example.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: springboot-async-example
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -29,6 +32,4 @@ jobs:
2932
distribution: "adopt"
3033
cache: "maven"
3134
- name: Build and analyze
32-
run: |
33-
cd springboot-async-example
34-
mvn clean package
35+
run: ./mvnw clean verify

.github/workflows/springboot-crud-hibernate-example.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: springboot-crud-hibernate-example
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -29,6 +32,4 @@ jobs:
2932
distribution: "adopt"
3033
cache: "maven"
3134
- name: Build and analyze
32-
run: |
33-
cd springboot-crud-hibernate-example
34-
mvn clean package
35+
run: ./mvnw clean package

.github/workflows/springboot-crud-rest-api-validation.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: springboot-crud-rest-api-validation
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -28,13 +31,5 @@ jobs:
2831
java-version: 17
2932
distribution: "adopt"
3033
cache: "maven"
31-
- name: Start up databases via docker compose
32-
run: |
33-
cd springboot-crud-rest-api-validation
34-
docker compose up -d
35-
sleep 15
36-
docker ps -a
3734
- name: Build and analyze
38-
run: |
39-
cd springboot-crud-rest-api-validation
40-
mvn clean package
35+
run: ./mvnw clean verify

.github/workflows/springboot-hibernate-composite-key-demo.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: springboot-hibernate-composite-key-demo
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -28,13 +31,5 @@ jobs:
2831
java-version: 17
2932
distribution: "adopt"
3033
cache: "maven"
31-
- name: Start up databases via docker compose
32-
run: |
33-
cd springboot-hibernate-composite-key-demo
34-
docker compose up -d
35-
sleep 15
36-
docker ps -a
3734
- name: Build and analyze
38-
run: |
39-
cd springboot-hibernate-composite-key-demo
40-
mvn clean package
35+
run: ./mvnw clean verify

.github/workflows/springboot-hibernate-many-to-many-mapping.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: springboot-hibernate-many-to-many-mapping
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -28,13 +31,5 @@ jobs:
2831
java-version: 17
2932
distribution: "adopt"
3033
cache: "maven"
31-
- name: Start up databases via docker compose
32-
run: |
33-
cd springboot-hibernate-many-to-many-mapping
34-
docker compose up -d
35-
sleep 15
36-
docker ps -a
3734
- name: Build and analyze
38-
run: |
39-
cd springboot-hibernate-many-to-many-mapping
40-
mvn clean package
35+
run: ./mvnw clean package

.github/workflows/springboot-hibernate-one-many-mapping.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: springboot-hibernate-one-many-mapping
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -28,13 +31,5 @@ jobs:
2831
java-version: 17
2932
distribution: "adopt"
3033
cache: "maven"
31-
- name: Start up databases via docker compose
32-
run: |
33-
cd springboot-hibernate-one-many-mapping
34-
docker compose up -d
35-
sleep 15
36-
docker ps -a
3734
- name: Build and analyze
38-
run: |
39-
cd springboot-hibernate-one-many-mapping
40-
mvn clean package
35+
run: ./mvnw clean package

.github/workflows/springboot-hibernate-one-one-mapping.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: springboot-hibernate-one-one-mapping
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -28,13 +31,5 @@ jobs:
2831
java-version: 17
2932
distribution: "adopt"
3033
cache: "maven"
31-
- name: Start up databases via docker compose
32-
run: |
33-
cd springboot-hibernate-one-one-mapping
34-
docker compose up -d
35-
sleep 15
36-
docker ps -a
3734
- name: Build and analyze
38-
run: |
39-
cd springboot-hibernate-one-one-mapping
40-
mvn clean package
35+
run: ./mvnw clean package

.github/workflows/springboot-mongodb-crud.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
build:
1818
name: Run Unit & Integration Tests
1919
runs-on: ubuntu-latest
20+
defaults:
21+
run:
22+
working-directory: springboot-mongodb-crud
2023
steps:
2124
- uses: actions/checkout@v3
2225
with:
@@ -29,6 +32,4 @@ jobs:
2932
distribution: "adopt"
3033
cache: "maven"
3134
- name: Build and analyze
32-
run: |
33-
cd springboot-mongodb-crud
34-
mvn clean package
35+
run: ./mvnw clean verify

0 commit comments

Comments
 (0)