diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2020-01-08 00:01:05 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2020-01-08 00:01:05 +0000 |
commit | b1508479a71de68494c255711f6f406843a36f2c (patch) | |
tree | e364703e61dc6a35f9b495353685a4e809169a2f /sonar/pom.xml | |
parent | f776ddfbbb4194000a3512d185dd506063dc76c5 (diff) | |
download | poi-b1508479a71de68494c255711f6f406843a36f2c.tar.gz poi-b1508479a71de68494c255711f6f406843a36f2c.zip |
try to set sonar settings via maven properties
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1872477 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sonar/pom.xml')
-rw-r--r-- | sonar/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar/pom.xml b/sonar/pom.xml index 6c66e4dba7..eb8109e17e 100644 --- a/sonar/pom.xml +++ b/sonar/pom.xml @@ -72,6 +72,12 @@ <!-- Try to disable running SVN blame as it causes errors here because the source is copied from the actual SVN location here! --> <sonar.scm.disabled>true</sonar.scm.disabled> + <sonar.organization>apache</sonar.organization> + <sonar.projectKey>poi-parent</sonar.projectKey> + <sonar.host.url>https://sonarcloud.io</sonar.host.url> + <sonar.jacoco.reportPaths>target/jacoco.exec</sonar.jacoco.reportPaths> + <sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths> + <!-- define some of the third-party or plugin-versions globally to use the same in all modules --> <xmlbeans.version>3.1.0</xmlbeans.version> <junit.version>4.13</junit.version> |