Skip to content

Commit

Permalink
[TO BE REVERTED] Fix Maven IT Failures because of 'no plugins install…
Browse files Browse the repository at this point in the history
…ed' (#8518)
  • Loading branch information
gregory-paidis-sonarsource authored Jan 5, 2024
1 parent 53de1b1 commit 2a9584d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion its/src/test/java/com/sonar/it/shared/TestUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ public static ScannerForMSBuild createEndStep(Path projectDir) {
}

public static ScannerForMSBuild createBeginStep(String projectName, Path projectDir) {
return createBeginStep(projectName, projectDir, "");
return createBeginStep(projectName, projectDir, "")
// FIXME: Remove the next line after this issue is resolved: https://sonarsource.slack.com/archives/CJ8L44WRF/p1704444673166759
.setProperty("sonar.plugins.downloadOnlyRequired", "false");
}

public static ScannerForMSBuild createBeginStep(String projectName, Path projectDir, String subProjectName) {
Expand Down

0 comments on commit 2a9584d

Please sign in to comment.