Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
458a685
feat : adds workflow for dependency upgradation
rajadilipkolli Mar 8, 2024
a8617ea
feat : fix issue with building application
rajadilipkolli Mar 8, 2024
c265b2f
chore(config): migrate config renovate.json
renovate[bot] May 19, 2025
9dd9061
Merge pull request #12 from rajadilipkolli-learning/renovate/migrate-…
rajadilipkolli May 19, 2025
d2ce423
fix issue with running pipeline (#14)
rajadilipkolli May 19, 2025
685f80c
chore(deps): update dependency org.apache.maven.plugins:maven-compile…
renovate[bot] May 19, 2025
60bcab1
chore(deps): update dependency org.codehaus.mojo:properties-maven-plu…
renovate[bot] May 19, 2025
81b1472
fix(deps): update mapstruct monorepo to v1.6.3 (#17)
renovate[bot] May 19, 2025
919809d
chore(deps): update dependency org.apache.maven.plugins:maven-failsaf…
renovate[bot] May 19, 2025
6f8f201
chore(deps): update mongo docker tag to v4.2.24 (#11)
renovate[bot] May 19, 2025
b6f9bcb
chore(deps): update mysql docker tag to v8.4.5 (#15)
renovate[bot] May 19, 2025
436c3ff
chore(deps): update dependency org.codehaus.mojo:versions-maven-plugi…
renovate[bot] May 19, 2025
97bbaa9
fix(deps): update dependency org.springframework.security:spring-secu…
renovate[bot] May 19, 2025
31e12ee
chore(deps): update dependency org.apache.maven.plugins:maven-surefir…
renovate[bot] May 19, 2025
022027b
Refactor logging implementation across services to use Log4j2 (#22)
rajadilipkolli May 19, 2025
8a15b54
refactor: migrate from SpringFox to Springdoc OpenAPI for API documen…
rajadilipkolli May 19, 2025
3f39016
refactor: remove Zipkin dependency from project configuration (#28)
rajadilipkolli May 20, 2025
df521f5
feat : adds script ro start and stop docker
rajadilipkolli May 24, 2025
9c09ec0
chore(deps): update mysql docker tag to v8.4.6 (#36)
renovate[bot] Jul 23, 2025
b3de08c
chore(deps): update actions/checkout action to v5 (#37)
renovate[bot] Aug 26, 2025
96979b1
chore(deps): update actions/setup-java action to v5 (#38)
renovate[bot] Aug 26, 2025
6142329
chore(deps): update dependency maven to v3.9.11 (#32)
renovate[bot] Aug 27, 2025
1511979
chore : update time for the circuit breaker to transition to the half…
rajadilipkolli Aug 29, 2025
9c990c6
chore(deps): update dependency org.codehaus.mojo:versions-maven-plugi…
renovate[bot] Sep 8, 2025
55c54e5
Attempt to fix build issues
rajadilipkolli Sep 27, 2025
f211da7
feat : downgrade to java 11 for debugging the issue (#44)
rajadilipkolli Sep 27, 2025
eb0b983
chore(deps): update dependency org.apache.maven.plugins:maven-failsaf…
renovate[bot] Sep 27, 2025
3d3108d
run for 20 sec
rajadilipkolli Oct 4, 2025
e2ac8ec
chore(deps): update dependency maven-wrapper to v3.3.4 (#41)
renovate[bot] Oct 4, 2025
7cc58b6
chore(deps): update dependency org.apache.maven.plugins:maven-compile…
renovate[bot] Oct 4, 2025
dbb6e0a
chore(deps): update dependency org.codehaus.mojo:versions-maven-plugi…
renovate[bot] Oct 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- name: Set up JDK 11
uses: actions/setup-java@v5
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: |
# Give execute permission to scripts
chmod +x mvnw
chmod +x setup.sh
chmod +x test-em-all.sh

# Setup environment
./setup.sh

# Build without docker
./mvnw clean verify -Ddockerfile.skip

# Start docker compose services
docker compose -p ssm up -d

# Wait for services to be ready (extra buffer)
sleep 30

# Run tests with increased timeouts
HOST=localhost PORT=8443 WAIT_TIME=10 RETRY_COUNT=40 ./test-em-all.sh

# Cleanup
docker compose -p ssm down --remove-orphans
115 changes: 0 additions & 115 deletions .mvn/wrapper/MavenWrapperDownloader.java

This file was deleted.

Binary file removed .mvn/wrapper/maven-wrapper.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions .mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip
4 changes: 2 additions & 2 deletions docker-compose-kafka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ services:
## Start - mongodb database definition
### $ mongo
mongodb:
image: mongo:4.2.6-bionic
image: mongo:4.2.24-bionic
ports:
- "27017-27019:27017-27019"
healthcheck:
Expand All @@ -186,7 +186,7 @@ services:
## Start - MySql database definition
### $ mysql -uroot -h127.0.0.1 -p
mysql:
image: mysql:8.0.20
image: mysql:8.4.6
ports:
- "3306:3306"
environment:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-partitions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ services:
## Start - mongodb database definition
### $ mongo
mongodb:
image: mongo:4.2.6-bionic
image: mongo:4.2.24-bionic
ports:
- "27017-27019:27017-27019"
healthcheck:
Expand All @@ -185,7 +185,7 @@ services:
## Start - MySql database definition
### $ mysql -uroot -h127.0.0.1 -p
mysql:
image: mysql:8.0.20
image: mysql:8.4.6
ports:
- "3306:3306"
environment:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ services:
## Start - mongodb database definition
### $ mongo
mongodb:
image: mongo:4.2.6-bionic
image: mongo:4.2.24-bionic
ports:
- "27017-27019:27017-27019"
healthcheck:
Expand All @@ -147,7 +147,7 @@ services:
## Start - MySql database definition
### $ mysql -uroot -h127.0.0.1 -p
mysql:
image: mysql:8.0.20
image: mysql:8.4.6
ports:
- "3306:3306"
environment:
Expand Down Expand Up @@ -189,5 +189,5 @@ services:
depends_on:
- rabbitmq
restart: on-failure
## Start - Zipkin Distributed Tracking visualizer
## End - Zipkin Distributed Tracking visualizer
# End - Data and transport Infrastructure
Loading