Skip to content

Commit

Permalink
Merge pull request #521 from awisniew90/gradle-multi-disable
Browse files Browse the repository at this point in the history
Avoid adding Maven parms in Gradle case
  • Loading branch information
awisniew90 authored Sep 17, 2024
2 parents b11d1d0 + 12b9e08 commit c2d46ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-regression-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# save logs
- name: Upload Logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-app-logs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public String getDefaultStartParameters(IProject iProject) {
String retVal = null;

Project proj = projectsByName.get(iProject.getName());
if (proj.isAggregated()) {
if (proj.getBuildType() == Project.BuildType.MAVEN && proj.isAggregated()) {
retVal = "-f ../pom.xml -am -pl " + getModuleNameSegment(iProject);
} else {
retVal = "";
Expand Down

0 comments on commit c2d46ce

Please sign in to comment.