We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pysonar
1 parent 9166f2f commit 06a25ceCopy full SHA for 06a25ce
src/pysonar_scanner/exceptions.py
@@ -37,7 +37,8 @@ def from_missing_keys(*properties: MissingProperty) -> "MissingPropertyException
37
missing_properties = ", ".join([f"{prop.property} ({prop.cli_arg})" for prop in properties])
38
fix_message = (
39
"You can provide these properties using one of the following methods:\n"
40
- "- Command line arguments (e.g., --sonar.projectKey=myproject)\n"
+ "- Command line arguments (e.g., --sonar-project-key=myproject)\n"
41
+ "- Analysis parameters with -D prefix (e.g., -Dsonar.projectKey=myproject)\n"
42
"- Environment variables (e.g., SONAR_PROJECTKEY=myproject)\n"
43
"- Properties file (sonar-project.properties)\n"
44
"- Project configuration files (e.g., build.gradle, pom.xml)"
0 commit comments