Skip to content

Commit

Permalink
fix: enable backend rest api to report apache maven plugins validatio…
Browse files Browse the repository at this point in the history
…ns (#796)

* fix: enable backend rest api to run on docker with verbose maven plugins validation

issue #201

* feat: remove triggers from init

issue #201
  • Loading branch information
Ricardo Campos authored Jan 25, 2024
1 parent f413161 commit 29dc617
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ jobs:
-p AWS_KINESIS_ROLE_ARN='${{ secrets.AWS_KINESIS_ROLE_ARN }}'
-p AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }}
-p AWS_ACCESS_KEY_SECRET='${{ secrets.AWS_ACCESS_KEY_SECRET }}'
triggers: ('common/' 'database/' 'backend/' 'frontend/' 'oracle-api/')

builds:
name: Builds
Expand Down
8 changes: 7 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,13 @@ services:
<<: *db-vars
ports: ["8090:8090", "5005:5005"]
image: maven:3.9.6-eclipse-temurin-17
entrypoint: mvn -ntp spring-boot:run -Dspring-boot.run.jvmArguments="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=*:5005"
entrypoint:
- "/bin/sh"
- -ecx
- |
mvn -ntp spring-boot:run \
-Dspring-boot.run.jvmArguments="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=*:5005" \
-Dmaven.plugin.validation=VERBOSE
working_dir: /app
volumes: ["./backend:/app"]
healthcheck:
Expand Down

0 comments on commit 29dc617

Please sign in to comment.