]> source.dussan.org Git - sonarqube.git/commit
SONAR-2505 support tracking of violations on dry runs
authorSimon Brandhof <simon.brandhof@gmail.com>
Fri, 17 Jun 2011 16:01:48 +0000 (18:01 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Fri, 17 Jun 2011 16:01:57 +0000 (18:01 +0200)
commit9a7fb4969d31cf0b5f5c3dbafcc19d39b9d86016
tree226688fc6a941bdc1e86290446ce016f40f7f3bb
parentc973498cfec4ff8e59ac33e9c9fb150a71ef828a
SONAR-2505 support tracking of violations on dry runs
29 files changed:
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/timemachine/ReferenceAnalysis.java [new file with mode: 0644]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/timemachine/SourceChecksum.java [new file with mode: 0644]
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/timemachine/ViolationPersisterDecorator.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/timemachine/ViolationTrackingDecorator.java [new file with mode: 0644]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/timemachine/SourceChecksumTest.java [new file with mode: 0644]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/timemachine/ViolationPersisterDecoratorTest.java
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/timemachine/ViolationTrackingDecoratorTest.java [new file with mode: 0644]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/timemachine/ViolationPersisterDecoratorTest/shared.xml [new file with mode: 0644]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/timemachine/ViolationPersisterDecoratorTest/shouldCopyPermanentIdFromReferenceViolation-result.xml [new file with mode: 0644]
plugins/sonar-core-plugin/src/test/resources/org/sonar/plugins/core/timemachine/ViolationPersisterDecoratorTest/shouldSaveViolations-result.xml [new file with mode: 0644]
sonar-batch/src/main/java/org/sonar/batch/bootstrap/BatchModule.java
sonar-batch/src/main/java/org/sonar/batch/bootstrap/ProjectModule.java
sonar-batch/src/main/java/org/sonar/batch/components/PastViolationsLoader.java [deleted file]
sonar-batch/src/main/java/org/sonar/batch/index/DefaultIndex.java
sonar-batch/src/main/java/org/sonar/batch/index/DefaultPersistenceManager.java
sonar-batch/src/main/java/org/sonar/batch/index/PersistenceManager.java
sonar-batch/src/main/java/org/sonar/batch/index/ReadOnlyPersistenceManager.java
sonar-batch/src/main/java/org/sonar/batch/index/SourcePersister.java
sonar-batch/src/main/java/org/sonar/batch/index/ViolationPersister.java [deleted file]
sonar-batch/src/test/java/org/sonar/batch/components/PastViolationsLoaderTest.java [deleted file]
sonar-batch/src/test/java/org/sonar/batch/index/ViolationPersisterTest.java [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/components/PastViolationsLoaderTest/shared.xml [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/index/ViolationPersisterTest/shared.xml [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/index/ViolationPersisterTest/shouldCopyPermanentIdFromPastViolation-result.xml [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/index/ViolationPersisterTest/shouldCopySwitchedOffFromPastViolation-result.xml [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/index/ViolationPersisterTest/shouldInsertViolations-result.xml [deleted file]
sonar-plugin-api/src/main/java/org/sonar/api/batch/SonarIndex.java
sonar-plugin-api/src/main/java/org/sonar/api/rules/Violation.java