aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/src/main/java/org/sonar/api/utils
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-16232 Delete sonar-plugin-api moduleDuarte Meneses2022-04-2162-6818/+0
|
* Update license headers for 2022 [update headers]Pierre2022-01-2862-62/+62
|
* Improve code qualityDuarte Meneses2021-11-181-2/+1
|
* Fix code quality issuesDuarte Meneses2021-09-241-13/+0
|
* Code smell fix: Remove redundant castsBruno Andrade2021-07-121-2/+2
|
* SONAR-14925 Remove code deprecated before 7.0 in the Plugin APIDuarte Meneses2021-06-176-88/+0
|
* SONAR-14882 Remove Staxmate and Woodstox dependencies from plugin APIJulien HENRY2021-05-281-1/+1
|
* SONAR-14642 - SSF-142Zipeng WU2021-04-191-0/+1
|
* Revert "SONAR-14642 - SSF-142"Zipeng WU2021-04-011-1/+0
| | | | This reverts commit 0810d5dcbc8e49b4f064223cd271225acb397e83.
* SONAR-14642 - SSF-142Zipeng WU2021-03-311-0/+1
|
* Update license headers for 2021 [update headers]Wouter Admiraal2021-01-0862-62/+62
|
* Class should not access its own subclass during initializationPierre2020-12-092-24/+64
|
* SONAR-8427 Add a timeZone param to api/issues/searchJulien HENRY2020-12-031-16/+44
|
* Decrease coupling with commons-ioJulien HENRY2020-03-231-2/+3
|
* SONAR-13198 Deprecate JsonWriterJulien HENRY2020-03-191-1/+3
|
* Format all headers for 2020Wouter Admiraal2020-01-0761-61/+61
|
* Fix code quality issues and reduce dependency on GuavaDuarte Meneses2019-12-103-10/+9
|
* Restore backward compatibilityJulien HENRY2019-11-213-7/+7
|
* Add a JUnit 5 version of LogTesterJulien HENRY2019-11-213-61/+172
|
* cache regex patternDuarte Meneses2019-09-041-2/+3
|
* Fix test to make it run on mac os (#1977)Jacek2019-08-011-0/+7
| | | | * fix test to make it run on mac os
* Remove dependency of sonar-scanner-engine on guavaDuarte Meneses2019-07-121-0/+8
|
* Extract implementation from plugin API and create new module ↵Duarte Meneses2019-07-128-627/+4
| | | | sonar-plugin-api-impl
* Remove use of Guava in main sources of sonar-plugin-apiDuarte Meneses2019-07-128-39/+87
|
* SONAR-10034 drop support of reflection-based Pico Container lifecycle managementSébastien Lesaint2019-05-231-1/+4
| | | | one must now implement org.picocontainer.Startable, org.sonar.api.Startable, java.io.Closeable and/or java.lang.Closeable
* SONAR-12108 Support Java 11 RTEDuarte Meneses2019-05-161-13/+6
|
* SONAR-11465 API cleanupJulien HENRY2019-01-165-7/+5
|
* SONAR-11492 Second analysis of a long-lived branch is using wrong leak versionDuarte Meneses2019-01-081-6/+26
|
* Fix license headers for 2019Duarte Meneses2019-01-0265-65/+65
|
* SONAR-10555 fail analysis if leak period is invalidSébastien Lesaint2018-10-031-0/+10
|
* Fix javadoc encodingSimon Brandhof2018-09-191-1/+1
|
* remove useless array copy in ListInterceptorSébastien Lesaint2018-08-211-2/+1
|
* SONAR-11169 make log interceptor concurrent and thread safeSébastien Lesaint2018-08-212-19/+19
|
* SONAR-11169 add ability to verify log argumentsSébastien Lesaint2018-08-213-17/+122
|
* Fix Quality flawsSimon Brandhof2018-07-251-31/+6
|
* SONAR-10138 Remove support for API < 5.6Duarte Meneses2018-06-296-791/+0
|
* SONAR-10816 Create WS to administrate applicationsJulien Lancelot2018-06-291-1/+1
|
* SONAR-10661 minimize normalize callsSébastien Lesaint2018-05-291-6/+7
|
* SONAR-10661 fix vulnerability in ZipUtils#unzip()Simon Brandhof2018-05-141-4/+18
|
* Drop deprecated class org.sonar.api.utils.SemaphoresSimon Brandhof2018-01-091-131/+0
|
* Fix license headers for 2018Simon Brandhof2018-01-0771-71/+71
|
* SONAR-10154 No streaming of web services response by defaultTeryk Bellahsene2018-01-031-1/+1
| | | | | | - most of the WS rely on protobuf with one encapsulating object. In effect, streaming is useless in this case - for WS relying on JsonWriter directly, if an exception was thrown when it has started writing, the WebServiceEngine error handling cannot work properly (clear response and format an error message with an appropriate HTTP response code) - a new factory method is added to JsonWriter to have a non streamable JsonWriter. The response is effectively written when the JsonWriter is closed
* SONAR-10059 Increase timeout to download pluginsGuillaume Jambet2017-12-011-0/+19
|
* SONAR-10008 Make date facet tests independent from the machine's time zoneDaniel Schwarz2017-10-241-0/+12
|
* SONAR-7574 Allow to set log level to WARN or ERROR in APIEric Hartmann2017-10-121-1/+7
|
* SONAR-9930 Noisy ERROR logs when failing to delete a temp directory that ↵Simon Brandhof2017-10-111-3/+5
| | | | does not exist
* Fix two logger callsDaniel Trebbien2017-10-101-1/+1
| | | | | | | | | | | One logger call was using incorrect syntax for a formatting anchor ('%s' should be '{}'). The other logger call had three formatting anchors, but only passed two values. These issues were found by SLF4J Helper for NetBeans IDE: http://plugins.netbeans.org/plugin/72557/
* Utilize parameterized loggingDaniel Trebbien2017-10-101-1/+1
| | | | | | | | | | | | | | As suggested in the SLF4J FAQ: https://www.slf4j.org/faq.html#logging_performance .. parameterized logging can improve the efficiency of logger calls when logging at the specified level is disabled. In addition, per the FAQ: https://www.slf4j.org/faq.html#paramException since SLF4J 1.6.0 it is possible to use parameterized logging and also log an exception/throwable. These changes were suggested by SLF4J Helper for NetBeans IDE: http://plugins.netbeans.org/plugin/72557/
* API - ability to extend MessageExceptionSimon Brandhof2017-10-031-1/+1
| | | | for instance to implement CE TypedException at the same time
* SONAR-9890 avoid as many potential problems of non-english locales as possibleDaniel Schwarz2017-09-281-1/+1
|