Skip to content

Commit

Permalink
Tweak coverage analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoellnitz committed Mar 20, 2016
1 parent 3bfcbd7 commit 692de1d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ task jacocoCombinedReport(type: JacocoReport) {
xml.enabled true
xml.destination "${buildDir}/reports/jacoco/test/jacocoTestReport.xml"
html.enabled true
html.destination "${buildDir}/reports/jacoco/test/html"
html.destination "${projectDir}/jacoco"
csv.enabled false
}
}
Expand Down
2 changes: 1 addition & 1 deletion coma/src/org/tangram/components/coma/ComaHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class ComaHandler extends AbstractLinkHandler {
private static final Logger LOG = LoggerFactory.getLogger(ComaHandler.class);

@Inject
private Set<ComaBeanPopulator> populators = Collections.EMPTY_SET;
private Set<ComaBeanPopulator> populators = Collections.EMPTY_SET; // NOPMD - this value cannot be final except for test


@LinkAction("/content/(.*)")
Expand Down
4 changes: 2 additions & 2 deletions publication-build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
#
# Copyright 2015 Martin Goellnitz
# Copyright 2015-2016 Martin Goellnitz
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand All @@ -15,4 +15,4 @@
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
gradle -Pjdk=/opt/jdk1.7.0_80 -Prelease clean build jacocoCombinedReport publishToMavenLocal
gradle -Pjdk=/opt/jdk1.7.0_80 -Prelease clean build jacocoTestReport jacocoCombinedReport publishToMavenLocal

0 comments on commit 692de1d

Please sign in to comment.