aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-2757 add the column SNAPSHOTS.PURGE_STATUS (INTEGER)Simon Brandhof2012-01-1931-125/+125
|
* SONAR-1707 feed the column SNAPSHOTS.BUILD_DATE on files and directoriesSimon Brandhof2012-01-181-0/+1
|
* SONAR-1707 Add the column SNAPSHOTS.BUILD_DATESimon Brandhof2012-01-1834-130/+135
|
* SONAR-2907 Fix loading of settings from database, when used property ↵Evgeny Mandrikov2012-01-182-6/+14
| | | | 'sonar.branch'
* Refactor org.sonar.batch.bootstrapper.BatchSimon Brandhof2012-01-162-31/+31
|
* Sanitize batch bootstrapperSimon Brandhof2012-01-136-10/+263
| | | | | - by default Logback is configured by batch, not by bootstrappers - ability to delegate logging to bootstrappers (require a SLF4J implementation)
* SONAR-2959 Add the property sonar.showSqlSimon Brandhof2012-01-124-6/+303
|
* Update copyright header for this new yearSimon Brandhof2012-01-10132-132/+132
|
* Upgrade to 2.14-SNAPSHOTEric Hartmann2012-01-031-1/+1
|
* Fix some quality flawssimonbrandhof2012-01-012-2/+2
|
* Fix some quality flawssimonbrandhof2011-12-311-1/+0
|
* SONAR-983 index the project from a dedicated post-job in order to optimize ↵simonbrandhof2011-12-304-19/+8
| | | | SQL requests
* SONAR-3116 throw an exception if skipping the root moduleSimon Brandhof2011-12-232-12/+11
|
* SONAR-983 provide the component org.sonar.core.resource.ResourceIndexer that ↵Simon Brandhof2011-12-234-13/+15
| | | | | | is a layer over ResourceIndexerDao + move derby SQL files to org.sonar.core.persistence
* Rename a unit test in ProjectFilterTestSimon Brandhof2011-12-221-1/+1
|
* Refactor the packages of sonar-coreSimon Brandhof2011-12-228-17/+13
| | | | | * The root package should be org.sonar.core -> org.sonar.persistence is moved to org.sonar.core.persistence * Classes are grouped by functional domain (resource, review, rule, ...)
* SONAR-983 do not index librariesSimon Brandhof2011-12-221-1/+3
|
* SONAR-983 Improve relevance of results and group them by qualifierSimon Brandhof2011-12-211-2/+2
|
* SONAR-983 resources are indexed during analysissimonbrandhof2011-12-203-17/+20
| | | | | | | * Rename the column RESOURCE_INDEX.PROJECT_ID to ROOT_PROJECT_ID * Increase the size of RESOURCE_INDEX.PROJECT_ID * Clean resource index from dbcleaner plugin * Experimental: indexes all the existing resources during upgrade from sonar < 2.13
* SONAR-2968 Do not force to add the root project to the property ↵simonbrandhof2011-12-202-25/+42
| | | | sonar.includedModules
* Sonar Persistence API refactoringFabrice Bellingard2011-12-141-1/+1
| | | | | | | - Class mapped to tables should now be named "MyTableDto" - DTOs, DAOs and Mappers of a same concern should be packed in a single package, allowing to use package visibility amongst them. => org.sonar.persistence has been reorganized following those rules.
* Fix some violationsSimon Brandhof2011-12-122-13/+13
|
* SONAR-2973 replace RULE_FAILURES_OVERRIDDEN_SEVERITY by ↵Simon Brandhof2011-12-122-12/+12
| | | | REVIEWS.MANUAL_SEVERITY (boolean)
* SONAR-2973 add the column RULE_FAILURES.OVERRIDDEN_SEVERITY (BOOLEAN)Simon Brandhof2011-12-082-52/+92
| | | | The name is not really sexy. If true, then the violation severity has been explicitly changed by user so it must not be reset when analyzing project.
* Fix some violationsSimon Brandhof2011-12-051-3/+1
|
* SONAR-1974 inject manual violations into batchsimonbrandhof2011-12-041-36/+27
|
* Fix some violationsSimon Brandhof2011-11-251-1/+1
|
* SONAR-3029 API: allow to have different severities for violations related to ↵Simon Brandhof2011-11-241-9/+3
| | | | the same rule
* Remove 2 commented-out lines + add a DEBUG log when excluding pluginSimon Brandhof2011-11-141-2/+1
|
* Fix potential NPE in Gradle tasksimonbrandhof2011-11-141-3/+6
|
* Fix loading of Gradle global propertiessimonbrandhof2011-11-132-6/+47
|
* Remove System.out.println() callssimonbrandhof2011-11-121-12/+0
|
* Fix loading of file exclusions - do not cache exclusions in Projectsimonbrandhof2011-11-115-85/+16
|
* Upgrade version to 2.13-SNAPSHOTEric Hartmann2011-11-091-1/+1
|
* Fix violationsEvgeny Mandrikov2011-11-075-5/+0
|
* SONAR-2967 extract the new component ProjectFilter from ProjectTreesimonbrandhof2011-11-046-71/+245
|
* SONAR-2956 Support Boolean type with DerbyEvgeny Mandrikov2011-10-311-5/+5
| | | | | | | | - Change DDL to use BOOLEAN instead of SMALLINT - Modify Hibernate dialect - Modify activerecord-jdbc-adapter (ideas were taken from arjdbc/postgresql/adapter.rb) - Use Derby for unit tests instead of HSQL and fix incorrect tests
* Remove unused logger org.sonar.DBSTATISTICSsimonbrandhof2011-10-301-5/+0
|
* SONAR-2914 disable BeanUtils DEBUG logs when sonar.verbose is enabledsimonbrandhof2011-10-302-3/+5
|
* Improve boolean parameters of Hibernate HQL queriesSimon Brandhof2011-10-273-4/+5
|
* Fix violationsEvgeny Mandrikov2011-10-261-1/+0
|
* SONAR-2642 add DAOs to picocontainer + improve unit testsSimon Brandhof2011-10-261-0/+4
|
* SONAR-2642 first step to integration mybatisSimon Brandhof2011-10-252-3/+49
|
* SONAR-801 Events on Dashboard confused for same project datesFabrice Bellingard2011-10-252-4/+22
| | | | | It is now possible to specify 'sonar.projectDate' as a standard ISO time. (ex. "2011-10-25T10:45:42+0100")
* Fix violationsEvgeny Mandrikov2011-10-251-2/+0
|
* SONAR-2796 Display which directories Sonar will use during analysisEvgeny Mandrikov2011-10-241-7/+0
| | | | | * Dedicated Initializer was created in order to do this. * Exclusions also displayed by this component.
* SONAR-2919 Alert/Profile/Version event sensors fill "created_at" col.Fabrice Bellingard2011-10-241-0/+2
|
* Fix violationsEvgeny Mandrikov2011-10-241-5/+5
|
* Fix config of Hibernate logs on batch sideSimon Brandhof2011-10-181-10/+8
|
* SONAR-2681 Provide meaningful error message when unable to determine Maven ↵Evgeny Mandrikov2011-10-132-16/+39
| | | | | | project structure This occurs because of usage of Advanced Reactor Options.