]> source.dussan.org Git - sonarqube.git/commit
SONAR-5389 Add support of FileLinesContextFactory + publish analysis
authorJulien HENRY <julien.henry@sonarsource.com>
Thu, 19 Jun 2014 21:25:55 +0000 (23:25 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Thu, 19 Jun 2014 21:26:57 +0000 (23:26 +0200)
commit369f12960fba6653e630042ab977c97e479a3076
treec3896b2a5f2caf4fdc8037567a862e810b43b38f
parent71a6a922a2d07ae8db9f13036a9653e772380762
SONAR-5389 Add support of FileLinesContextFactory + publish analysis
40 files changed:
sonar-batch/src/main/java/org/sonar/batch/DefaultFileLinesContext.java
sonar-batch/src/main/java/org/sonar/batch/mediumtest/AnalyzerMediumTester.java [new file with mode: 0644]
sonar-batch/src/main/java/org/sonar/batch/mediumtest/package-info.java [new file with mode: 0644]
sonar-batch/src/main/java/org/sonar/batch/scan2/AnalyzerIssueCache.java
sonar-batch/src/main/java/org/sonar/batch/scan2/AnalyzerMeasureCache.java
sonar-batch/src/main/java/org/sonar/batch/scan2/AnalyzisPublisher.java [new file with mode: 0644]
sonar-batch/src/main/java/org/sonar/batch/scan2/DefaultAnalyzerContext.java
sonar-batch/src/main/java/org/sonar/batch/scan2/DefaultFileLinesContext.java [new file with mode: 0644]
sonar-batch/src/main/java/org/sonar/batch/scan2/DefaultFileLinesContextFactory.java [new file with mode: 0644]
sonar-batch/src/main/java/org/sonar/batch/scan2/ModuleScanContainer.java
sonar-batch/src/main/java/org/sonar/batch/scan2/ModuleScanExecutor.java
sonar-batch/src/main/java/org/sonar/batch/tasks/package-info.java [new file with mode: 0644]
sonar-batch/src/test/java/org/sonar/batch/mediumtest/AnalyzerMediumTester.java [deleted file]
sonar-batch/src/test/java/org/sonar/batch/mediumtest/xoo/XooMediumTest.java
sonar-batch/src/test/java/org/sonar/batch/mediumtest/xoo/plugin/XooPlugin.java
sonar-batch/src/test/java/org/sonar/batch/mediumtest/xoo/plugin/lang/ScmActivityAnalyzer.java [new file with mode: 0644]
sonar-batch/src/test/resources/mediumtest/xoo/sample/sonar-project.properties [new file with mode: 0644]
sonar-batch/src/test/resources/mediumtest/xoo/sample/testx/ClassOneTest.xoo [new file with mode: 0644]
sonar-batch/src/test/resources/mediumtest/xoo/sample/testx/ClassOneTest.xoo.measures [new file with mode: 0644]
sonar-batch/src/test/resources/mediumtest/xoo/sample/testx/ClassOneTest.xoo.scm [new file with mode: 0644]
sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/HelloJava.xoo [new file with mode: 0644]
sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/HelloJava.xoo.measures [new file with mode: 0644]
sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/HelloJava.xoo.scm [new file with mode: 0644]
sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/helloscala.xoo [new file with mode: 0644]
sonar-batch/src/test/resources/mediumtest/xoo/sample/xources/hello/helloscala.xoo.measures [new file with mode: 0644]
sonar-batch/src/test/resources/org/sonar/batch/mediumtest/xoo/sample/sonar-project.properties [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/mediumtest/xoo/sample/testx/ClassOneTest.xoo [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/mediumtest/xoo/sample/testx/ClassOneTest.xoo.measures [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/mediumtest/xoo/sample/testx/ClassOneTest.xoo.scm [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/mediumtest/xoo/sample/xources/hello/HelloJava.xoo [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/mediumtest/xoo/sample/xources/hello/HelloJava.xoo.measures [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/mediumtest/xoo/sample/xources/hello/HelloJava.xoo.scm [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/mediumtest/xoo/sample/xources/hello/helloscala.xoo [deleted file]
sonar-batch/src/test/resources/org/sonar/batch/mediumtest/xoo/sample/xources/hello/helloscala.xoo.measures [deleted file]
sonar-deprecated/src/main/java/org/sonar/api/checks/AnnotationCheckFactory.java
sonar-deprecated/src/main/java/org/sonar/api/checks/CheckFactory.java
sonar-plugin-api/src/main/java/org/sonar/api/batch/analyzer/measure/internal/DefaultAnalyzerMeasureBuilder.java
sonar-plugin-api/src/main/java/org/sonar/api/measures/FileLinesContext.java
sonar-plugin-api/src/main/java/org/sonar/api/measures/FileLinesContextFactory.java
sonar-plugin-api/src/main/java/org/sonar/api/measures/RangeDistributionBuilder.java