我正在尝试为我的Gradle Groovy项目生成Codenarc报告,并将它们发布到Jenkins中。
我成功配置了我的Gradle项目以生成Codenarc报告:
的build.gradle
apply plugin: 'codenarc'
...
dependencies {
codenarc 'org.codenarc:CodeNarc:0.21'
...
}
codenarc {
configFile = file('config/codenarc/codenarc.groovy')
// sourceSets = [project.sourceSets.main] // run codenarc on production sources only
ignoreFailures = true // Let the build finish even though there are code warnings
reportFormat = 'xml'
reportsDir = new File("build/reports/codenarc")
}
配置/ codenarc / codenarc.groovy
// Read and choose rules here: http://codenarc.sourceforge.net/codenarc-rule-index.html
ruleset {
ruleset('rulesets/basic.xml')
}
我还使用Violations插件在Jenkins上设置了一个作业,但是当生成违规报告时,它不会显示实际的代码违规。它只显示统计信息,如果我按下具有违规行为的groovy文件,则显示空白页。
我有使用Codenarc插件的Grails项目,它在违规报告中显示完整的代码片段,所以我猜我的Gradle中的Codenarc设置有问题吗?
非常欢迎任何帮助或建议!
编辑: 如果相关,生成的Codenarc XML如下所示:
<?xml version='1.0'?>
<CodeNarc url='http://www.codenarc.org' version='0.21'>
<Report timestamp='07-10-2014 15:31:18'/>
<Project title=''>
<SourceDirectory>src\groovy</SourceDirectory>
</Project>
<PackageSummary totalFiles='124' filesWithViolations='118' priority1='0' priority2='156'
priority3='143'></PackageSummary>
<Package path='testmodel' totalFiles='124' filesWithViolations='118' priority1='0' priority2='156'
priority3='143'></Package>
<Package path='testmodel/begivenheder' totalFiles='31' filesWithViolations='30' priority1='0' priority2='32'
priority3='17'>
<File name='AbstraktTest.groovy'>
<Violation ruleName='ClassJavadoc' priority='2' lineNumber='5'>
<SourceLine><![CDATA[@CompileStatic]]></SourceLine>
<Message><![CDATA[Class testmodel.begivenheder.AbstraktAendring missing JavaDoc]]></Message>
</Violation>
...
</File>
</Package>
<Rules>
<Rule name='AbcMetric'>
<Description>
<![CDATA[Checks the ABC size metric for methods/classes. A method (or "closure field") with an ABC score greater than the maxMethodAbcScore property (60) causes a violation. Likewise, a class that has an (average method) ABC score greater than the maxClassAverageMethodAbcScore property (60) causes a violation.]]></Description>
</Rule>
...
</Rules>
</CodeNarc>