aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch
Commit message (Collapse)AuthorAgeFilesLines
...
* SONAR-1450: Add support for incremental review of incoming violationsGodin2010-11-305-9/+20
|
* SONAR-1450: Add the column RULE_FAILURES.CREATED_ATGodin2010-11-305-10/+14
|
* SONAR-1450: Add support for incremental review of incoming violationsGodin2010-11-305-45/+52
|
* SONAR-1450: Revert some changes made yesterdayGodin2010-11-304-35/+13
|
* SONAR-249 fix detection of "best value measures" in delayed mode - add unit ↵simonbrandhof2010-11-306-11/+76
| | | | tests
* SONAR-249 fix detection of "best value measures" in delayed modesimonbrandhof2010-11-301-19/+27
|
* SONAR-1450 add the parameter "boolean checkOlder" to ↵simonbrandhof2010-11-297-14/+22
| | | | ResourcePersister#getLastSnapshot()
* SONAR-249 improve core components to load rules and metricssimonbrandhof2010-11-299-102/+51
|
* SONAR-1450: Add support for incremental review of incoming violationsGodin2010-11-2912-47/+149
| | | | | * Move getPreviousLastSnapshot from UpdateStatusJob to DefaultResourcePersister * ViolationPersister should allow load and update of violations
* SONAR-249 always save measures with diff values, even if best valuesimonbrandhof2010-11-292-2/+36
|
* SONAR-249 do not save measures with best value when using the delayed modesimonbrandhof2010-11-293-14/+23
|
* SONAR-2017 Log execution time of decoratorssimonbrandhof2010-11-282-5/+122
|
* SONAR-1405: The API must optionally allow plugins to add rule violations on ↵Godin2010-11-263-18/+22
| | | | lines with //NOSONAR tag
* SONAR-249 fix issue with the metric duplications_data : ↵simonbrandhof2010-11-261-2/+2
| | | | sensorContext.saveResource() must set the "effective key"
* SONAR-249 fix update of measures when using the delayed modesimonbrandhof2010-11-2610-70/+213
|
* SONAR-249 add unit testssimonbrandhof2010-11-2615-228/+346
|
* forgot to commit some unit test filessimonbrandhof2010-11-267-0/+542
|
* SONAR-249: extract persistence layer from data index + dump measures at the ↵simonbrandhof2010-11-2677-2343/+2576
| | | | end of the batch instead of persisting them on the fly
* SONAR-1556: When a language is specified with the 'sonar.language' property ↵Godin2010-11-231-7/+19
| | | | but not supported, a clear message must be displayed
* SONAR-1663 include the dbcleaner plugin + move all purges in this pluginsimonbrandhof2010-11-182-44/+2
|
* [maven-release-plugin] prepare for next development iterationsimonbrandhof2010-11-091-1/+1
|
* [maven-release-plugin] prepare release 2.4-RC1simonbrandhof2010-11-091-1/+1
|
* fix issue in snapshot duplicationssimonbrandhof2010-11-051-4/+33
|
* SONAR-1850 A new snapshot is created on project A each time project B (which ↵simonbrandhof2010-11-041-2/+5
| | | | depends on A) is analyzed
* SONAR-1878: Add a meaningful error message when a Source can't be persisted ↵Godin2010-11-031-24/+22
| | | | in the Sonar DB
* Use the same rules everywhere to transform plugin keyGodin2010-11-032-51/+14
|
* add the method getURL() to org.sonar.api.platform.Serversimonbrandhof2010-11-025-8/+8
|
* DefaultTimeMachine: do not search for the resource in index if the resource ↵simonbrandhof2010-10-222-5/+13
| | | | has already an id (cf VIEWS-4)
* compare doubles with NumberUtils.compare() instead of Double.compare()simonbrandhof2010-10-211-1/+2
|
* SONAR-1830 new metric type 'rating'simonbrandhof2010-10-191-1/+1
|
* SONAR-1847: Meaningful exception should be thrown when saving violation with ↵Godin2010-10-171-2/+2
| | | | a rule that doesn't exist
* SONAR-1834: When exist, the source code exclusion patterns should be ↵Godin2010-10-171-1/+8
| | | | displayed in the Maven log
* SONAR-1862:Godin2010-10-161-19/+14
| | | | | | | * Upgrade to sonar-update-center-common 0.3-SNAPSHOT * Add column 'child_first_classloader' to table 'plugins' * Add possibility to use child-first classloader
* SONAR-1838: Allow inter-dependencies for pluginsGodin2010-10-151-16/+14
|
* [maven-release-plugin] prepare for next development iterationsimonbrandhof2010-10-121-1/+1
|
* [maven-release-plugin] prepare release 2.3simonbrandhof2010-10-121-1/+1
|
* [maven-release-plugin] prepare for next development iterationsimonbrandhof2010-10-051-1/+1
|
* [maven-release-plugin] prepare release 2.3-RC2simonbrandhof2010-10-051-1/+1
|
* upgrade trunk to 2.4-SNAPSHOTsimonbrandhof2010-09-301-1/+1
|
* [maven-release-plugin] prepare for next development iterationsimonbrandhof2010-09-301-1/+1
|
* [maven-release-plugin] prepare release 2.3-RC1simonbrandhof2010-09-301-1/+1
|
* do use the parameter sonar.core.codeCoveragePlugin only for java projectssimonbrandhof2010-09-302-22/+47
|
* the property sonar.core.codeCoveragePlugin is not used when it's set from UI ↵simonbrandhof2010-09-303-45/+51
| | | | console
* fix execution of jacoco and emma pluginssimonbrandhof2010-09-302-1/+38
|
* SONAR-1814 add the method ExtensionProvider.provide() in order to support ↵simonbrandhof2010-09-281-0/+1
| | | | obfuscated code
* SONAR-1814 remove the API to find a plugin from an extension :simonbrandhof2010-09-282-14/+124
| | | | | | * do register coverage extensions in picocontainer only when the plugin is selected (see parameter sonar.core.codeCoveragePlugin) * do not display plugin names when detecting a duplication of metrics * remove unused methods from the deprecated component RulesManager
* SONAR-1711 temporarily log warnings instead of throwing an exception when ↵simonbrandhof2010-09-272-2/+4
| | | | saving measures/violations on unknown resources
* SONAR-1711 Allow to exclude sources from code analysis based on cutoff datesimonbrandhof2010-09-268-12/+22
|
* SONAR-1711 add a lock on SensorContext/DecoratorContext in order to avoid ↵simonbrandhof2010-09-246-19/+133
| | | | creation of resources in methods saveViolation() and saveMeasure().
* do not keep in cache violations in DecoratorContextsimonbrandhof2010-09-241-6/+3
|