File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ clean:
12
12
13
13
# # coverage - Test (and build) the project to generate a coverage report
14
14
coverage :
15
- mvn install -Dgpg.skip=true -Dcheckstyle.skip=true -Dcheckstyle .skip=true -Ddependency-check .skip=true jacoco:report
15
+ mvn verify -Dgpg.skip=true -Dcheckstyle.skip=true -Ddependency-check .skip=true -Djavadoc .skip=true jacoco:report
16
16
17
17
# # docs - Generates library documentation
18
18
docs :
19
- mvn install -DskipTests=true -Dgpg.skip=true -Dcheckstyle.skip=true -Dcheckstyle .skip=true -Ddependency-check .skip=true
19
+ mvn install -DskipTests=true -Dgpg.skip=true -Dcheckstyle.skip=true -Ddependency-check .skip=true -Djavadoc .skip=true
20
20
cp -R target/apidocs/ ./docs/
21
21
22
22
# # install-checkstyle - Install CheckStyle
Original file line number Diff line number Diff line change 147
147
<goal >report</goal >
148
148
</goals >
149
149
</execution >
150
+ <execution >
151
+ <id >jacoco-check</id >
152
+ <goals >
153
+ <goal >check</goal >
154
+ </goals >
155
+ <configuration >
156
+ <rules >
157
+ <rule >
158
+ <element >BUNDLE</element >
159
+ <limits >
160
+ <limit >
161
+ <counter >LINE</counter >
162
+ <value >COVEREDRATIO</value >
163
+ <minimum >0.90</minimum >
164
+ </limit >
165
+ </limits >
166
+ </rule >
167
+ </rules >
168
+ </configuration >
169
+ </execution >
150
170
</executions >
151
171
</plugin >
152
172
<plugin >
You can’t perform that action at this time.
0 commit comments