[gmetrics] 01/04: Merge tag 'upstream/0.7'
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Fri Nov 20 10:09:30 UTC 2015
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a commit to branch master
in repository gmetrics.
commit d72efea04126264d4c8f668834b42902392e491d
Merge: dc47bbd f3d8bc1
Author: Emmanuel Bourg <ebourg at apache.org>
Date: Fri Nov 20 10:53:22 2015 +0100
Merge tag 'upstream/0.7'
Upstream version 0.7
CHANGELOG.txt | 39 +++
README.txt | 2 +-
docs/SampleGMetricsReport.html | 2 +-
docs/SampleGMetricsSingleSeriesReport.html | 2 +-
docs/dependencies.html | 188 -----------
docs/gmetrics-AbcMetric.html | 25 +-
...s.html => gmetrics-AfferentCouplingMetric.html} | 40 +--
docs/gmetrics-BasicHtmlReportWriter.html | 27 +-
docs/gmetrics-ClassCountMetric.html | 25 +-
docs/gmetrics-ClassLineCountMetric.html | 25 +-
docs/gmetrics-CoberturaBranchCoverageMetric.html | 27 +-
docs/gmetrics-CoberturaLineCoverageMetric.html | 27 +-
docs/gmetrics-CrapMetric.html | 25 +-
docs/gmetrics-CyclomaticComplexityMetric.html | 25 +-
docs/gmetrics-DefaultMetricSet.html | 25 +-
...o.html => gmetrics-EfferentCouplingMetric.html} | 37 +-
docs/gmetrics-FieldCountMetric.html | 25 +-
docs/gmetrics-MethodCountMetric.html | 25 +-
docs/gmetrics-MethodLineCountMetric.html | 25 +-
...pleReports.html => gmetrics-SampleReports.html} | 29 +-
docs/gmetrics-SingleSeriesHtmlReportWriter.html | 25 +-
docs/gmetrics-XmlReportWriter.html | 25 +-
docs/gmetrics-ant-task.html | 25 +-
docs/gmetrics-creating-metricset.html | 25 +-
docs/gmetrics-other-tools-frameworks.html | 25 +-
docs/gmetrics-roadmap.html | 25 +-
docs/images/close.gif | Bin 279 -> 0 bytes
docs/index.html | 27 +-
docs/license.html | 372 ---------------------
pom.xml | 222 ++++++------
.../analyzer/FilesystemSourceAnalyzer.groovy | 143 --------
.../gmetrics/ant/AntFileSetSourceAnalyzer.groovy | 33 +-
.../org/gmetrics/metric/AbstractMetric.groovy | 7 +-
src/main/groovy/org/gmetrics/metric/Metric.groovy | 2 +-
.../groovy/org/gmetrics/metric/MetricLevel.groovy | 12 +-
.../PostProcessingMetric.groovy} | 16 +-
.../metric/classcount/ClassCountMetric.groovy | 2 +-
.../AbstractCouplingReferenceManager.groovy | 102 ++++++
.../AbstractPackageCouplingMetric.groovy} | 38 ++-
.../metric/coupling/AfferentCouplingMetric.groovy | 51 +++
.../AfferentCouplingReferenceManager.groovy | 78 +++++
.../metric/coupling/EfferentCouplingMetric.groovy | 53 +++
.../EfferentCouplingReferenceManager.groovy | 78 +++++
.../coupling/PackageReferenceAstVisitor.groovy | 143 ++++++++
.../AbstractCoberturaCoverageMetric.groovy | 10 +-
.../metric/coverage/CoberturaCoverageFile.groovy | 39 +--
.../CyclomaticComplexityAstVisitor.groovy | 7 +
.../metric/linecount/ClassLineCountMetric.groovy | 2 +-
.../metricregistry/DefaultMetricRegistry.groovy | 8 +-
.../gmetrics/metricset/GroovyDslMetricSet.groovy | 4 +-
.../gmetrics/report/BasicHtmlReportWriter.groovy | 62 ++--
.../org/gmetrics/report/XmlReportWriter.groovy | 15 +-
.../org/gmetrics/result/FunctionNames.groovy | 1 +
...rMetricResult.groovy => MapMetricResult.groovy} | 29 +-
.../org/gmetrics/result/MetricResultBuilder.groovy | 16 +-
...Result.groovy => MutableMapMetricResult.groovy} | 32 +-
.../org/gmetrics/result/NumberMetricResult.groovy | 2 +-
.../result/SingleNumberMetricResult.groovy | 4 +-
.../gmetrics/resultsnode/ClassResultsNode.groovy | 9 +-
.../gmetrics/resultsnode/PackageResultsNode.groovy | 15 +-
src/main/groovy/org/gmetrics/util/AstUtil.groovy | 3 +-
.../Calculator.groovy} | 21 +-
.../groovy/org/gmetrics/util/ClassNameUtil.groovy | 61 ++++
.../groovy/org/gmetrics/util/ImportUtil.groovy | 47 +++
.../resources/gmetrics-base-messages.properties | 14 +
src/main/resources/gmetrics-version.txt | 2 +-
src/site/apt/gmetrics-AfferentCouplingMetric.apt | 57 ++++
src/site/apt/gmetrics-BasicHtmlReportWriter.apt | 9 +
.../apt/gmetrics-CoberturaBranchCoverageMetric.apt | 19 +-
.../apt/gmetrics-CoberturaLineCoverageMetric.apt | 20 +-
src/site/apt/gmetrics-EfferentCouplingMetric.apt | 57 ++++
...ampleReports.apt => gmetrics-SampleReports.apt} | 0
src/site/apt/index.apt | 14 +-
src/site/resources/SampleGMetricsReport.html | 2 +-
.../SampleGMetricsSingleSeriesReport.html | 2 +-
src/site/resources/SampleGMetricsXmlReport.xml | 2 +-
src/site/site.xml | 2 +
.../AbstractSourceAnalyzer_IntegrationTest.groovy | 10 +-
.../analyzer/FilesystemSourceAnalyzerTest.groovy | 226 -------------
...FilesystemSourceAnalyzer_IntegrationTest.groovy | 39 ---
.../ant/AntFileSetSourceAnalyzerTest.groovy | 80 ++++-
.../ant/GMetricsTask_AntBuilderTest.groovy | 6 +-
.../metric/AbstractCommonMetricTestCase.groovy | 2 +-
.../gmetrics/metric/AbstractMetricTestCase.groovy | 26 +-
.../metric/LoadAllPredefinedMetricsTest.groovy | 80 +++++
.../org/gmetrics/metric/MetricLevelTest.groovy | 53 +++
.../groovy/org/gmetrics/metric/StubMetric.groovy | 4 +-
...AbstractCouplingReferenceManagerTestCase.groovy | 130 +++++++
...tractPackageCouplingMetric_ClassTestCase.groovy | 250 ++++++++++++++
...actPackageCouplingMetric_PackageTestCase.groovy | 57 ++++
.../AfferentCouplingMetric_ClassTest.groovy | 48 +++
.../AfferentCouplingMetric_PackageTest.groovy | 79 +++++
.../AfferentCouplingReferenceManagerTest.groovy | 109 ++++++
.../metric/coupling/CouplingReportTestMain.groovy | 56 ++++
.../EfferentCouplingMetric_ClassTest.groovy | 48 +++
.../EfferentCouplingMetric_PackageTest.groovy | 79 +++++
.../EfferentCouplingReferenceManagerTest.groovy | 99 ++++++
.../AbstractCoberturaMetricTestCase.groovy | 45 +--
.../coverage/CoberturaCoverageFileTest.groovy | 55 +++
.../CoberturaCoverage_AntBuilderTest.groovy | 12 +-
.../CyclomaticComplexityMetric_MethodTest.groovy | 17 +
.../DefaultMetricRegistryTest.groovy | 4 +
.../report/AbstractReportWriterTest.groovy | 7 +-
.../report/AbstractReportWriterTestCase.groovy | 9 +-
.../report/BasicHtmlReportWriterTest.groovy | 33 ++
.../BasicHtmlReportWriter_IntegrationTest.groovy | 13 +-
.../org/gmetrics/report/XmlReportWriterTest.groovy | 113 +++++--
.../org/gmetrics/result/MapMetricResultTest.groovy | 83 +++++
.../gmetrics/result/MetricResultBuilderTest.groovy | 13 +-
.../result/MutableMapMetricResultTest.groovy | 98 ++++++
.../gmetrics/result/NumberMetricResultTest.groovy | 18 +-
.../result/SingleNumberMetricResultTest.groovy | 28 +-
.../org/gmetrics/result/StubMetricResult.groovy | 2 +-
.../resultsnode/ClassResultsNodeTest.groovy | 8 +
.../resultsnode/PackageResultsNodeTest.groovy | 22 +-
.../resultsnode/ResultsNodeTestUtil.groovy | 4 +-
.../gmetrics/resultsnode/StubResultsNode.groovy | 4 +-
.../org/gmetrics/test/AbstractTestCase.groovy | 10 +-
.../test/RunCodeNarcAgainstSourceCodeTest.groovy | 8 +-
.../tool/RunGMetricsAgainstExternalProject.groovy | 78 +++++
.../gmetrics/tool/RunGMetricsAgainstGrails.groovy | 22 +-
.../groovy/org/gmetrics/util/AstUtilTest.groovy | 11 +-
.../groovy/org/gmetrics/util/CalculatorTest.groovy | 45 +++
.../org/gmetrics/util/ClassNameUtilTest.groovy | 57 ++++
.../groovy/org/gmetrics/util/ImportUtilTest.groovy | 53 +++
.../org/gmetrics/util/PropertyUtilTest.groovy | 8 +-
.../RunGMetricsAgainstExternalProject.metricset | 24 ++
.../resources/RunGMetricsAgainstGrails.metricset | 9 +
src/test/resources/codenarc/CodeNarcRuleSet.groovy | 4 +-
src/test/resources/coupling/CouplingMetricSet.txt | 14 +
src/test/resources/nested/dir1/dir2/ClassA1.groovy | 5 +
src/test/resources/source/dirA/ClassA1.groovy | 2 +
src/test/resources/source/dirB/ClassB1.groovy | 4 +-
133 files changed, 3407 insertions(+), 1777 deletions(-)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/gmetrics.git
More information about the pkg-java-commits
mailing list