aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/src/test/java/org/sonar/api/config/SettingsTest.java
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-7678 server-side stateless settingsSimon Brandhof2016-09-061-453/+0
| | | | | | | | | | | | | | | | | | | | * Settings class becomes abstract as multiple implementations are used. Can't become an interface for binary backward-compatibility of API * tests should use MapSettings, an in-memory implementation of Settings * web server uses a thread-specific cache of settings when processing HTTP requests * web server does not have a cache of settings during startup, except for the system settings loaded from sonar.properties * Compute Engine uses a thread-specific cache of settings when processing a task. Cache is clear at end of task. * some useless methods of PersistentSettings are removed
* Fix project title in copyright headersSimon Brandhof2016-01-131-1/+1
|
* Upgrade to parent 26 and new copyright headersSimon Brandhof2016-01-051-4/+4
|
* Redundant throws clause in testsDavid Gageot2015-05-071-1/+1
|
* Use random timezone when executing tests from mavenSimon Brandhof2015-04-021-1/+1
| | | | This allows to fail-fast if a test is heavily coupled with local timezone.
* Replace fest-assert by assertJSimon Brandhof2015-01-101-6/+6
|
* Fix quality flawsSimon Brandhof2014-10-151-1/+15
|
* Update copyright headers (replace 2013 by 2014)Simon Brandhof2014-03-111-1/+1
|
* Add unit test to Settings#getBoolean()Simon Brandhof2013-10-041-12/+25
|
* SONAR-4061 The property 'sonar.password' is not encryptableJulien HENRY2013-06-261-23/+23
|
* Revert Rename PropertyDefinitions to PropertyDefs and ↵Julien Lancelot2013-04-251-2/+2
| | | | PropertyFieldDefinition to PropertyFieldDef
* Rename PropertyDefinitions to PropertyDefs and PropertyFieldDefinition to ↵Julien Lancelot2013-04-241-2/+2
| | | | PropertyFieldDef
* Update copyright headersSimon Brandhof2013-04-221-4/+4
|
* SONAR-4252 rename Sonar to SonarQube in source headersSimon Brandhof2013-04-211-3/+3
|
* SONAR-3891 Update PropertyDefinition in order to be used directly to define ↵Julien Lancelot2013-03-261-15/+15
| | | | properties (with builder pattern)
* SONAR-3940 do not duplicate property in settings pageSimon Brandhof2012-12-071-1/+10
|
* SONAR-3940 property relocationSimon Brandhof2012-11-071-1/+39
|
* SONAR-3898 API: add methods getFloat() and getDouble() to ↵Simon Brandhof2012-10-221-20/+75
| | | | org.sonar.api.config.Settings
* SONAR-3529 Get rid of property sets. Use PropertyFields insteadDavid Gageot2012-09-281-38/+21
|
* SONAR-3529 prepare for json parsing of property setsDavid Gageot2012-09-251-12/+31
|
* SONAR-3754 API: ability to define a cardinality on a propertyDavid Gageot2012-09-201-1/+48
|
* Add some tests to org.sonar.api.config.SettingsSimon Brandhof2012-07-061-2/+51
|
* API: add Settings#getStringLines(String key)Simon Brandhof2012-07-061-6/+67
|
* SONAR-2706 Add extension point to customize workflow of reviewsSimon Brandhof2012-05-211-36/+42
| | | | | Note that this extension point is still not exposed to public API. It's still located in the package org.sonar.core.reviews.workflow of sonar-core.
* SONAR-1378 validate property types + update type of core propertiesSimon Brandhof2012-03-161-15/+13
|
* SONAR-3316 trim all the propertiesSimon Brandhof2012-03-151-0/+15
|
* Update copyright header for this new yearSimon Brandhof2012-01-101-1/+1
|
* SONAR-3062 API: org.sonar.api.config.Settings#getStringArray() should trim ↵simonbrandhof2011-12-071-1/+23
| | | | values
* SONAR-2861 New Configuration APIsimonbrandhof2011-10-071-0/+124
The component org.apache.commons.Configuration is still available but plugins should use org.sonar.api.config.Settings. It also implies the following issues : SONAR-2870 do not rebuild the WAR file when editing sonar.properties SONAR-2869 allow to use the annotations @Properties/@Property on extensions