Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Gradle 8.4 to 8.5 and upgrade related Gradle Plugins #805

Merged
merged 11 commits into from
Feb 7, 2024
9 changes: 8 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,11 @@ gradleEnterprise {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}

// See https://community.sonarsource.com/t/sonar-gradle-skipcompile-is-not-working/102710/9
TWiStErRob marked this conversation as resolved.
Show resolved Hide resolved
// TODO move this to a better place once https://sonarsource.atlassian.net/browse/SONARGRADL-134 is resolved.
// > The 'sonar' / 'sonarqube' task depends on compile tasks.
// > This behavior is now deprecated and will be removed in version 5.x.
// > To avoid implicit compilation, set property 'sonar.gradle.skipCompile' to 'true' and make sure your project is compiled, before analysis has started.
Michael1993 marked this conversation as resolved.
Show resolved Hide resolved
System.setProperty("sonar.gradle.skipCompile", "true")