|
60 | 60 | </modules>
|
61 | 61 |
|
62 | 62 | <properties>
|
63 |
| - <lucene.version>7.3.0</lucene.version> |
64 |
| - <mavenjavadocplugin.version>2.10.4</mavenjavadocplugin.version> |
| 63 | + <lucene.version>7.3.0</lucene.version> |
| 64 | + <mavenjavadocplugin.version>2.10.4</mavenjavadocplugin.version> |
65 | 65 | <compileSource>1.8</compileSource>
|
66 | 66 | <compileTarget>1.8</compileTarget>
|
67 | 67 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
159 | 159 | <version>3.6.1</version>
|
160 | 160 | </plugin>
|
161 | 161 | <plugin>
|
162 |
| - <!-- UNIT TEST RUNNER --> |
| 162 | + <!-- UNIT TEST RUNNER --> |
163 | 163 | <groupId>org.apache.maven.plugins</groupId>
|
164 | 164 | <artifactId>maven-surefire-plugin</artifactId>
|
165 | 165 | <configuration>
|
166 | 166 | <forkCount>1</forkCount>
|
167 | 167 | <reuseForks>false</reuseForks>
|
168 | 168 | </configuration>
|
169 | 169 | <version>2.20</version>
|
170 |
| - <executions> |
171 |
| - <execution> |
172 |
| - <id>run-unit-tests</id> |
173 |
| - <goals> |
174 |
| - <goal>test</goal> |
175 |
| - </goals> |
176 |
| - </execution> |
177 |
| - </executions> |
| 170 | + <executions> |
| 171 | + <execution> |
| 172 | + <id>run-unit-tests</id> |
| 173 | + <goals> |
| 174 | + <goal>test</goal> |
| 175 | + </goals> |
| 176 | + </execution> |
| 177 | + </executions> |
178 | 178 | </plugin>
|
179 | 179 | <plugin>
|
180 | 180 | <groupId>org.jacoco</groupId>
|
181 | 181 | <artifactId>jacoco-maven-plugin</artifactId>
|
182 |
| - <version>0.7.9</version> |
| 182 | + <version>0.8.1</version> |
183 | 183 | <executions>
|
184 |
| - <!-- Prepare execution with Surefire --> |
185 |
| - <execution> |
186 |
| - <id>pre-unit-test</id> |
187 |
| - <goals> |
188 |
| - <goal>prepare-agent</goal> |
189 |
| - </goals> |
190 |
| - <configuration> |
191 |
| - <propertyName>surefireArgLine</propertyName> |
192 |
| - </configuration> |
193 |
| - </execution> |
194 |
| - <!-- Generate report after tests are run --> |
195 |
| - <execution> |
196 |
| - <id>post-unit-test</id> |
197 |
| - <phase>test</phase> |
198 |
| - <goals> |
199 |
| - <goal>report</goal> |
200 |
| - </goals> |
201 |
| - </execution> |
| 184 | + <!-- Prepare execution with Surefire --> |
| 185 | + <execution> |
| 186 | + <id>pre-unit-test</id> |
| 187 | + <goals> |
| 188 | + <goal>prepare-agent</goal> |
| 189 | + </goals> |
| 190 | + <configuration> |
| 191 | + <propertyName>surefireArgLine</propertyName> |
| 192 | + </configuration> |
| 193 | + </execution> |
| 194 | + <!-- Generate report after tests are run --> |
| 195 | + <execution> |
| 196 | + <id>post-unit-test</id> |
| 197 | + <phase>test</phase> |
| 198 | + <goals> |
| 199 | + <goal>report</goal> |
| 200 | + </goals> |
| 201 | + </execution> |
202 | 202 | </executions>
|
203 | 203 | </plugin>
|
204 |
| - <plugin> |
| 204 | + <plugin> |
205 | 205 | <groupId>org.apache.maven.plugins</groupId>
|
206 | 206 | <artifactId>maven-javadoc-plugin</artifactId>
|
207 |
| - <version>${mavenjavadocplugin.version}</version> |
208 |
| - <configuration> |
209 |
| - <excludePackageNames>org.apache.commons.jrcs.*</excludePackageNames> |
210 |
| - </configuration> |
| 207 | + <version>${mavenjavadocplugin.version}</version> |
| 208 | + <configuration> |
| 209 | + <excludePackageNames>org.apache.commons.jrcs.*</excludePackageNames> |
| 210 | + </configuration> |
211 | 211 | <executions>
|
212 | 212 | <execution>
|
213 | 213 | <goals>
|
|
289 | 289 | <groupId>org.apache.maven.plugins</groupId>
|
290 | 290 | <artifactId>maven-surefire-report-plugin</artifactId>
|
291 | 291 | <version>2.20</version>
|
292 |
| - <configuration> |
293 |
| - <argLine>${surefireArgLine}</argLine> |
294 |
| - </configuration> |
| 292 | + <configuration> |
| 293 | + <argLine>${surefireArgLine}</argLine> |
| 294 | + </configuration> |
| 295 | + </plugin> |
| 296 | + <!-- CODE COVERAGE PUBLISHER --> |
| 297 | + <plugin> |
| 298 | + <groupId>org.eluder.coveralls</groupId> |
| 299 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 300 | + <version>3.1.0</version> |
295 | 301 | </plugin>
|
296 |
| - <!-- CODE COVERAGE PUBLISHER --> |
297 |
| - <plugin> |
298 |
| - <groupId>org.eluder.coveralls</groupId> |
299 |
| - <artifactId>coveralls-maven-plugin</artifactId> |
300 |
| - <version>3.1.0</version> |
301 |
| - </plugin> |
302 | 302 | <plugin>
|
303 | 303 | <groupId>org.apache.maven.plugins</groupId>
|
304 | 304 | <artifactId>maven-jxr-plugin</artifactId>
|
|
0 commit comments