aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-engine/src/main/java/org/sonar/scanner/bootstrap
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-25630 Make running the scanner engine in-process easierJulien HENRY14 days2-3/+79
|
* SONAR-24676 Scanner Exit on java.lang.ErrorAntoine Vinot2025-05-221-16/+15
|
* SONAR-25064 Scanner-Engine should index hidden filesJonas Wielage2025-05-161-0/+2
|
* SONAR-18640 Drop MutableModuleSettings and MutableProjectSettingsVictor Schneuwly2025-05-061-2/+0
| | | Co-authored-by: Aurelien Poscia <aurelien.poscia@sonarsource.com>
* SONAR-21514 Remove hardcoded property definition for sonar.rpg.suffixesJulien HENRY2025-03-201-16/+0
|
* SONAR-24521 Implements sonar plugin API addAnalysisData method in the ↵Steve Marion2025-03-171-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 HENRY2025-02-131-6/+11
| | | | Co-authored-by: Antoine Vinot <antoine.vinot@sonarsource.com>
* SONAR-24146 Update license headers for 2025Matteo Mara2025-01-0927-27/+27
|
* SONAR-24126 Fix issues turning QG redMatteo Mara2025-01-071-1/+0
|
* SONAR-17771 Drop the support for 'sonar.password'Claire Villard2025-01-061-5/+0
| | | Co-authored-by: Eric Giffon <eric.giffon@sonarsource.com>
* SONAR-24021 Invoke method(s) only conditionallyJulien Camus2024-12-272-9/+12
|
* SONAR-23968 Log a warning when encrypted properties are used on Scanner sideClaire Villard2024-12-191-0/+4
|
* SONAR-19122 Update annotations from javax to jakartaJacek Poreda2024-12-182-2/+2
|
* SONAR-23972 Update scanner-related broken documentation linksClaire Villard2024-12-182-52/+1
|
* SONAR-22305 Ignore scanner properties with null valuesJavier García Orduña2024-12-051-4/+6
|
* SONAR-23427 Stop relying on Qualifiers, Scopes and ResourceType from the ↵Julien HENRY2024-10-241-2/+0
| | | | plugin API
* NO-JIRA improved performance of tests in sonar-scanner-engine modulelukasz-jarocki-sonarsource2024-10-231-1/+8
|
* SONAR-23327 Implement addTelemetryProperty in the scanner engineMatteo Mara2024-10-111-0/+4
|
* Fix stacktrace in the Json outputJulien HENRY2024-05-131-0/+6
|
* Log the max memory allocated to the scanner engineJulien HENRY2024-05-131-0/+4
|
* Change log level to debug for user cacheJulien HENRY2024-05-131-1/+1
|
* Log the Java versionJulien HENRY2024-05-131-0/+15
|
* Unwrap MessageExceptionJulien HENRY2024-05-131-13/+42
|
* SONAR-22086 Add support to configure scanner with env variablesJulien HENRY2024-04-302-0/+101
|
* SONAR-22038 Support new SSL properties (#10987)Julien HENRY2024-04-308-417/+138
| | | | | * Move scanner HttpClient code in its own package * Factorize the computation of the Sonar User Home
* SONAR-22039 Support new timeout propertiesJulien HENRY2024-04-151-11/+37
|
* SONAR-22037 Support new HTTP proxy propertiesJulien HENRY2024-04-151-6/+23
|
* SONAR-22036 Add a main to the scanner engineJulien HENRY2024-04-152-0/+207
|
* SONAR-22074 enable DownloadOnlyRequired by default10.5.0.89998Pierre2024-04-121-1/+1
|
* SONAR-21857 fix ssflukasz-jarocki-sonarsource2024-03-191-1/+1
|
* SONAR-21452 move from commons-lang:commons-lang to ↵Matteo Mara2024-03-165-14/+14
| | | | org.apache.commons:commons-lang3
* SONAR-21575 Populate the issue filter chain after optional plugins have been ↵Julien HENRY2024-02-091-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 definedMatteo Mara2024-01-311-1/+1
|
* NO-JIRA Make Gson usage more type-safeMarcono12342024-01-291-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 analyzersMatteo Mara2024-01-261-0/+14
|
* SONAR-21195 Move ProjectSensorOptimizer to the correct containerMatteo Mara2024-01-191-5/+0
|
* SONAR-21195 Make DefaultLanguagesRepository more suitable for testsMatteo Mara2024-01-041-5/+4
|
* SONAR-21197 add a property to enable the download of the required plugins onlyMatteo Mara2024-01-041-5/+6
|
* SONAR-21195 Fix issues raised by SonarQubeMatteo Mara2024-01-041-2/+2
|
* SONAR-21195 Refactor file indexing into two distinct stepsMatteo Mara2024-01-044-13/+41
|
* SONAR-21195 Enhance scanner engine to download only required pluginsMatteo Mara2024-01-046-31/+495
|
* NO-JIRA Update license headers to 2024Pierre2024-01-0325-25/+25
|
* Revert "SONAR-21195 Enhance scanner engine to download only required plugins"Matteo Mara2023-12-226-493/+31
| | | | This reverts commit 981e6b85954f413666e8608a4e2f46fa2e4089cc.
* Revert "SONAR-21195 Refactor file indexing into two distinct steps"Matteo Mara2023-12-224-41/+13
| | | | This reverts commit 42d16dafde01b19bc7fcb99084e087fdc9b8e95e.
* Revert "SONAR-21195 Fix issues raised by SonarQube"Matteo Mara2023-12-221-2/+2
| | | | This reverts commit 68c20adec31385cc56a6532883c3328947742522.
* Revert "SONAR-21197 add a property to enable the download of the required ↵Matteo Mara2023-12-221-6/+5
| | | | | | plugins only" This reverts commit fcde75e36903ef10c8f9dfca0f22d57bf19b3281.
* Revert "SONAR-21195 Make DefaultLanguagesRepository more suitable for tests"Matteo Mara2023-12-221-4/+5
| | | | This reverts commit c7841606b3d4b469177a3426d4c5127b0ebb23cf.
* SONAR-21195 Make DefaultLanguagesRepository more suitable for testsMatteo Mara2023-12-211-5/+4
|
* SONAR-21197 add a property to enable the download of the required plugins onlyMatteo Mara2023-12-211-5/+6
|
* SONAR-21195 Fix issues raised by SonarQubeMatteo Mara2023-12-211-2/+2
|