Skip to content
This repository was archived by the owner on Dec 4, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/build-and-run-example-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:

- name: Build and Install
run: |
mvn -DskipTests=true install 2>&1 | tee logs/install-plugin.log
mvn install -DskipTests=true 2>&1 | tee logs/install-plugin.log
if grep -E "\[ERROR\]" logs/install-plugin.log; then
cat logs/install-plugin.log
exit 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ jobs:
reporter: github-pr-review
level: warning
- name: Build with Maven
run: mvn -B package --file pom.xml
run: mvn -DskipTests=true -B package --file pom.xml