2016-03-29 5 views
0

ありがとうございます。ECLemma、sonarqube

ECLemma eclipseプラグインを使用してコードカバレッジを試していました。そこに我々はfile..Hereは私の性質は、私がしようとしているというファイルであるプロパティを変更することにより、sonarqubeサーバー上のレポートを生成することができます任意の方法をローカルsystem.Isに関するレポートを生成することができ..

sonar.host.url=http://localhost:9000 
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance 
sonar.jdbc.driverClassName=com.mysql.jdbc.Driver 
sonar.projectKey=org.accenture.sonarplugin 
sonar.projectName=Code Analysis Plugin 
sonar.projectVersion=1.0 
sonar.junit.reportsPath=code-analysis-rules/target/surefire-reports/code-analysis-rules 
sonar.jacoco.reportPath=code-analysis-rules/target/jacoco/Desktop.exec 
sonar.sources=src 

sonar.language=java 
sonar.sourceEncoding=UTF-8 

sonar.profile=Sonar way 

sonar.android.lint.report=lint-report.xml 

sonar.jdbc.username=sonar 
sonar.jdbc.password=sonar 
sonar.login = admin 
sonar.password = admin*emphasized text* 

答えて

0

方法はありませんプロパティ値を更新するだけでこれらの結果をインポートできます。ただし、Generic Coverageプラグインをご覧ください。カバレッジデータをこの形式に変換すると、その原点に関係なくインポートできます。

+0

返事ありがとうございました。 –

関連する問題