Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SONAR-25630 Make running the scanner engine in-process easier | Julien HENRY | 14 days | 2 | -3/+79 |
| | |||||
* | SONAR-24676 Scanner Exit on java.lang.Error | Antoine Vinot | 2025-05-22 | 1 | -16/+15 |
| | |||||
* | SONAR-25064 Scanner-Engine should index hidden files | Jonas Wielage | 2025-05-16 | 1 | -0/+2 |
| | |||||
* | SONAR-18640 Drop MutableModuleSettings and MutableProjectSettings | Victor Schneuwly | 2025-05-06 | 1 | -2/+0 |
| | | | Co-authored-by: Aurelien Poscia <aurelien.poscia@sonarsource.com> | ||||
* | SONAR-21514 Remove hardcoded property definition for sonar.rpg.suffixes | Julien HENRY | 2025-03-20 | 1 | -16/+0 |
| | |||||
* | SONAR-24521 Implements sonar plugin API addAnalysisData method in the ↵ | Steve Marion | 2025-03-17 | 1 | -6/+6 |
| | | | | | | scanner-engine. Add Xoo plugin sensor that utilizes the analysisData method. | ||||
* | SONAR-24319 Allow the scanner engine to query feature flags (#12874) | Julien HENRY | 2025-02-13 | 1 | -6/+11 |
| | | | | Co-authored-by: Antoine Vinot <antoine.vinot@sonarsource.com> | ||||
* | SONAR-24146 Update license headers for 2025 | Matteo Mara | 2025-01-09 | 27 | -27/+27 |
| | |||||
* | SONAR-24126 Fix issues turning QG red | Matteo Mara | 2025-01-07 | 1 | -1/+0 |
| | |||||
* | SONAR-17771 Drop the support for 'sonar.password' | Claire Villard | 2025-01-06 | 1 | -5/+0 |
| | | | Co-authored-by: Eric Giffon <eric.giffon@sonarsource.com> | ||||
* | SONAR-24021 Invoke method(s) only conditionally | Julien Camus | 2024-12-27 | 2 | -9/+12 |
| | |||||
* | SONAR-23968 Log a warning when encrypted properties are used on Scanner side | Claire Villard | 2024-12-19 | 1 | -0/+4 |
| | |||||
* | SONAR-19122 Update annotations from javax to jakarta | Jacek Poreda | 2024-12-18 | 2 | -2/+2 |
| | |||||
* | SONAR-23972 Update scanner-related broken documentation links | Claire Villard | 2024-12-18 | 2 | -52/+1 |
| | |||||
* | SONAR-22305 Ignore scanner properties with null values | Javier García Orduña | 2024-12-05 | 1 | -4/+6 |
| | |||||
* | SONAR-23427 Stop relying on Qualifiers, Scopes and ResourceType from the ↵ | Julien HENRY | 2024-10-24 | 1 | -2/+0 |
| | | | | plugin API | ||||
* | NO-JIRA improved performance of tests in sonar-scanner-engine module | lukasz-jarocki-sonarsource | 2024-10-23 | 1 | -1/+8 |
| | |||||
* | SONAR-23327 Implement addTelemetryProperty in the scanner engine | Matteo Mara | 2024-10-11 | 1 | -0/+4 |
| | |||||
* | Fix stacktrace in the Json output | Julien HENRY | 2024-05-13 | 1 | -0/+6 |
| | |||||
* | Log the max memory allocated to the scanner engine | Julien HENRY | 2024-05-13 | 1 | -0/+4 |
| | |||||
* | Change log level to debug for user cache | Julien HENRY | 2024-05-13 | 1 | -1/+1 |
| | |||||
* | Log the Java version | Julien HENRY | 2024-05-13 | 1 | -0/+15 |
| | |||||
* | Unwrap MessageException | Julien HENRY | 2024-05-13 | 1 | -13/+42 |
| | |||||
* | SONAR-22086 Add support to configure scanner with env variables | Julien HENRY | 2024-04-30 | 2 | -0/+101 |
| | |||||
* | SONAR-22038 Support new SSL properties (#10987) | Julien HENRY | 2024-04-30 | 8 | -417/+138 |
| | | | | | * Move scanner HttpClient code in its own package * Factorize the computation of the Sonar User Home | ||||
* | SONAR-22039 Support new timeout properties | Julien HENRY | 2024-04-15 | 1 | -11/+37 |
| | |||||
* | SONAR-22037 Support new HTTP proxy properties | Julien HENRY | 2024-04-15 | 1 | -6/+23 |
| | |||||
* | SONAR-22036 Add a main to the scanner engine | Julien HENRY | 2024-04-15 | 2 | -0/+207 |
| | |||||
* | SONAR-22074 enable DownloadOnlyRequired by default10.5.0.89998 | Pierre | 2024-04-12 | 1 | -1/+1 |
| | |||||
* | SONAR-21857 fix ssf | lukasz-jarocki-sonarsource | 2024-03-19 | 1 | -1/+1 |
| | |||||
* | SONAR-21452 move from commons-lang:commons-lang to ↵ | Matteo Mara | 2024-03-16 | 5 | -14/+14 |
| | | | | org.apache.commons:commons-lang3 | ||||
* | SONAR-21575 Populate the issue filter chain after optional plugins have been ↵ | Julien HENRY | 2024-02-09 | 1 | -3/+3 |
| | | | | | | | loaded Optional plugins can contribute IssueFilter, so we should not load the list of extensions too early. Moving the IssueFilters class in the child container was not possible due to many dependencies, so the choice has been made to make it "mutable": it is instantiated early to allow injection, but the list of IssueFilter is populated later. | ||||
* | SONAR-21195 sonar.plugins.downloadOnlyRequired defaults to false if not defined | Matteo Mara | 2024-01-31 | 1 | -1/+1 |
| | |||||
* | NO-JIRA Make Gson usage more type-safe | Marcono1234 | 2024-01-29 | 1 | -2/+1 |
| | | | | | | Uses `Gson.fromJson(..., TypeToken<T>)` instead of `fromJson(..., Type)` Also replaces some usage of the deprecated `JsonParser()` constructor. | ||||
* | SONAR-21195 Support deprecated file suffixes properties from optional analyzers | Matteo Mara | 2024-01-26 | 1 | -0/+14 |
| | |||||
* | SONAR-21195 Move ProjectSensorOptimizer to the correct container | Matteo Mara | 2024-01-19 | 1 | -5/+0 |
| | |||||
* | SONAR-21195 Make DefaultLanguagesRepository more suitable for tests | Matteo Mara | 2024-01-04 | 1 | -5/+4 |
| | |||||
* | SONAR-21197 add a property to enable the download of the required plugins only | Matteo Mara | 2024-01-04 | 1 | -5/+6 |
| | |||||
* | SONAR-21195 Fix issues raised by SonarQube | Matteo Mara | 2024-01-04 | 1 | -2/+2 |
| | |||||
* | SONAR-21195 Refactor file indexing into two distinct steps | Matteo Mara | 2024-01-04 | 4 | -13/+41 |
| | |||||
* | SONAR-21195 Enhance scanner engine to download only required plugins | Matteo Mara | 2024-01-04 | 6 | -31/+495 |
| | |||||
* | NO-JIRA Update license headers to 2024 | Pierre | 2024-01-03 | 25 | -25/+25 |
| | |||||
* | Revert "SONAR-21195 Enhance scanner engine to download only required plugins" | Matteo Mara | 2023-12-22 | 6 | -493/+31 |
| | | | | This reverts commit 981e6b85954f413666e8608a4e2f46fa2e4089cc. | ||||
* | Revert "SONAR-21195 Refactor file indexing into two distinct steps" | Matteo Mara | 2023-12-22 | 4 | -41/+13 |
| | | | | This reverts commit 42d16dafde01b19bc7fcb99084e087fdc9b8e95e. | ||||
* | Revert "SONAR-21195 Fix issues raised by SonarQube" | Matteo Mara | 2023-12-22 | 1 | -2/+2 |
| | | | | This reverts commit 68c20adec31385cc56a6532883c3328947742522. | ||||
* | Revert "SONAR-21197 add a property to enable the download of the required ↵ | Matteo Mara | 2023-12-22 | 1 | -6/+5 |
| | | | | | | plugins only" This reverts commit fcde75e36903ef10c8f9dfca0f22d57bf19b3281. | ||||
* | Revert "SONAR-21195 Make DefaultLanguagesRepository more suitable for tests" | Matteo Mara | 2023-12-22 | 1 | -4/+5 |
| | | | | This reverts commit c7841606b3d4b469177a3426d4c5127b0ebb23cf. | ||||
* | SONAR-21195 Make DefaultLanguagesRepository more suitable for tests | Matteo Mara | 2023-12-21 | 1 | -5/+4 |
| | |||||
* | SONAR-21197 add a property to enable the download of the required plugins only | Matteo Mara | 2023-12-21 | 1 | -5/+6 |
| | |||||
* | SONAR-21195 Fix issues raised by SonarQube | Matteo Mara | 2023-12-21 | 1 | -2/+2 |
| |