We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2bb56 commit 297227eCopy full SHA for 297227e
README.md
@@ -1,6 +1,11 @@
1
# pysonar
2
A wrapper around SonarScanner CLI, available on PyPI.
3
4
+# Requirements
5
+
6
+ - SonarQube v9.9 or higher
7
+ - Python 3.8 or above
8
9
# Installation
10
11
Install with pip:
src/pysonar/configuration.py
@@ -41,7 +41,7 @@ class Configuration:
41
def __init__(self):
42
self.log = ApplicationLogger.get_logger()
43
self.sonar_scanner_path = ".scanner"
44
- self.sonar_scanner_version = "4.6.2.2472"
+ self.sonar_scanner_version = "5.0.1.3006"
45
self.sonar_scanner_executable_path = ""
46
self.scan_arguments = []
47
self.wrapper_arguments = argparse.Namespace(debug=False, read_project_config=False)
0 commit comments