aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/src/test/java
Commit message (Collapse)AuthorAgeFilesLines
...
* SONAR-2218 Add CoverageMeasuresBuilder to API + add Metric.Builder, first ↵simonbrandhof2011-02-252-0/+187
| | | | step to get an immutable Metric class
* Improve KeyValueFormat: support typed parsingsimonbrandhof2011-02-252-62/+191
|
* SONAR-2193 Pattern matching should work in case if pattern ends on "/**"Evgeny Mandrikov2011-02-191-2/+0
|
* API: rename BlockUnit to Methodsimonbrandhof2011-02-141-0/+46
|
* SONAR-2193: Add unit testsEvgeny Mandrikov2011-02-141-2/+16
|
* Rename Scopes.TYPE to Scopes.PROGRAM_UNITsimonbrandhof2011-02-072-5/+5
|
* SONAR-2172: New extension point - InitializerEvgeny Mandrikov2011-02-071-0/+43
| | | | | | * Rename AbstractInitializer to Initializer * Execute Initializers before Sensors
* Replace enum Environment by class EnvironmentInformationEvgeny Mandrikov2011-02-041-52/+0
| | | | | | | * Each environment should provide key and version * Plugins for Maven 2.x and Maven 3.x have same key "Maven" and provide a real version of Maven
* Upgrade copyright headerssimonbrandhof2011-02-04101-457/+457
|
* Fix org.sonar.api.utils.AnnotationUtils: search for annotations in ↵simonbrandhof2011-02-021-3/+18
| | | | interfaces too
* Add profile to check copyright headers + fix some badly formatted headerssimonbrandhof2011-01-314-61/+56
|
* Add some unit testssimonbrandhof2011-01-281-7/+46
|
* SONAR-2149 Resource filters are ignored in complexity distributions of Java ↵simonbrandhof2011-01-282-91/+2
| | | | | | projects This issue implies SONAR-2153 : API: A decorator should override formulas
* add helper methods to Qualifiers + do not accept null parameterssimonbrandhof2011-01-281-8/+0
|
* add methods Scopes#isHigherThan() and isHigherThanOrEquals()simonbrandhof2011-01-281-0/+20
|
* SONAR-2151: Add new property to manage source encodingEvgeny Mandrikov2011-01-281-1/+8
|
* SONAR-2126: Change API to work with file system of a projectEvgeny Mandrikov2011-01-273-19/+16
| | | | | | | | | | * Use language keys instead of objects. * ProjectFileSystem now BatchComponent, so DefaultProjectFileSystem uses benefits from injections and some old code was removed from it to improve immutability. * Small performance improvement for DefaultInputFile.
* Add the method ResourceUtils#isPersistable(Resource)simonbrandhof2011-01-261-1/+23
|
* Improve org.sonar.api.resources.Scopes and Qualifierssimonbrandhof2011-01-242-0/+201
|
* SONAR-2126: Partially revert previous changesEvgeny Mandrikov2011-01-241-6/+0
| | | | | * Maven can modify source directories during Sonar execution via see MavenPhaseExecutor.
* SONAR-2126: Change api to work with project file systemEvgeny Mandrikov2011-01-231-1/+3
|
* SONAR-2126: Change api to work with project file systemEvgeny Mandrikov2011-01-231-0/+2
|
* SONAR-2126: Change api to work with project file systemEvgeny Mandrikov2011-01-233-23/+51
| | | | | | | | * Introduce InputFile (file and reference to base directory), which can be retrieved from ProjectFileSystem * Reduce dependencies on MavenProject - don't use project.getPom() in DefaultProjectFileSystem and MavenUtils in ProjectUtils
* override the method WildcardPattern.toString()simonbrandhof2011-01-071-0/+7
|
* temporarily ignore HttpDownloadederTest - too many freezes on MS Windowssimonbrandhof2010-12-211-0/+2
|
* Backward compatibility for XMLProfileParserGodin2010-12-091-2/+14
|
* Minor changeGodin2010-12-091-5/+1
|
* * SONAR-1809: MetricFinder should be available on server sideGodin2010-12-081-5/+6
| | | | * Fix javadocs
* SONAR-1809: Export / import alerts attached to a quality profileGodin2010-12-082-8/+50
|
* SONAR-1829: Use severity instead of priorityGodin2010-12-072-6/+8
|
* SONAR-1829: Use severity instead of priorityGodin2010-12-074-23/+22
|
* Fix typosGodin2010-12-061-1/+1
|
* Improve ViolationsDecoratorTestGodin2010-12-061-1/+11
|
* SONAR-249 save configuration used for measure variations and new violations ↵simonbrandhof2010-12-011-5/+13
| | | | in the table SNAPSHOTS
* SONAR-2007 Remove the useless ISO Categories + fix components pagesimonbrandhof2010-12-0116-67/+50
|
* SONAR-249: extract persistence layer from data index + dump measures at the ↵simonbrandhof2010-11-263-52/+52
| | | | end of the batch instead of persisting them on the fly
* SONAR-1663 include the dbcleaner plugin + move all purges in this pluginsimonbrandhof2010-11-181-41/+0
|
* trying to fix a jetty deadlock issue in the unit test HttpDownloaderTestsimonbrandhof2010-11-161-10/+102
|
* Increase code coverage for XMLRuleParserGodin2010-11-161-2/+9
|
* SONAR-1981: If name not specified for rule, then AnnotationRuleParser should ↵Godin2010-11-151-0/+87
| | | | set it equal to key
* SONAR-1953 Minimum period used in purge tasks should be configurablesimonbrandhof2010-11-121-0/+41
|
* SONAR-1943 Add proxy authentication support for update centersimonbrandhof2010-11-091-3/+24
|
* Improve routines for patterns, add unit testsGodin2010-11-031-2/+10
|
* HttpDownloader should not create file if fail to downloadGodin2010-11-011-1/+16
|
* SONAR-1904: WildcardPattern "**/Reader" shouldn't match ↵Godin2010-10-291-0/+11
| | | | "org.sonar.channel.CodeReader" and "java.io.StringReader"
* SONAR-1643 move core widgets from sonar-server to sonar-core-plugin + improve UIsimonbrandhof2010-10-281-2/+8
|
* SONAR-1903: Fix problem with cloned rules and AnnotationCheckFactoryGodin2010-10-251-2/+3
|
* Add unit test for cloned rules to AnnotationCheckFactoryGodin2010-10-252-9/+33
|
* fix compatibility with Java 1.5simonbrandhof2010-10-111-1/+1
|
* trying to fix a unit test which sometimes fails on windowssimonbrandhof2010-10-111-1/+2
|