Skip to content
Merged
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
3 changes: 2 additions & 1 deletion src/pysonar_scanner/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ def from_missing_keys(*properties: MissingProperty) -> "MissingPropertyException
missing_properties = ", ".join([f"{prop.property} ({prop.cli_arg})" for prop in properties])
fix_message = (
"You can provide these properties using one of the following methods:\n"
"- Command line arguments (e.g., --sonar.projectKey=myproject)\n"
"- Command line arguments (e.g., --sonar-project-key=myproject)\n"
"- Analysis parameters with -D prefix (e.g., -Dsonar.projectKey=myproject)\n"
"- Environment variables (e.g., SONAR_PROJECTKEY=myproject)\n"
"- Properties file (sonar-project.properties)\n"
"- Project configuration files (e.g., build.gradle, pom.xml)"
Expand Down
Loading