Skip to content

Commit

Permalink
chore: switching from mvnw to maven
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj committed Oct 30, 2024
1 parent e05268c commit 763c7c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/reusable-tests-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:
# Java builds
- name: Build Backend
working-directory: backend
run: ./mvnw clean package -DskipTests -Dtests.skip=true -Dskip.unit.tests=true
run: mvn clean package -DskipTests -Dtests.skip=true -Dskip.unit.tests=true

- name: Build Legacy
working-directory: legacy
run: ./mvnw clean package -DskipTests -Dtests.skip=true -Dskip.unit.tests=true
run: mvn clean package -DskipTests -Dtests.skip=true -Dskip.unit.tests=true

- name: Build Processor
working-directory: processor
run: ./mvnw clean package -DskipTests -Dtests.skip=true -Dskip.unit.tests=true
run: mvn clean package -DskipTests -Dtests.skip=true -Dskip.unit.tests=true

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

0 comments on commit 763c7c7

Please sign in to comment.