File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 53
53
<properties >
54
54
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
55
55
<project .scm.id>github</project .scm.id>
56
+ <maven-surefire-plugin .version>2.19.1</maven-surefire-plugin .version>
57
+ <junit .jupiter.version>5.1.0</junit .jupiter.version>
58
+ <junit .platform.version>1.1.0</junit .platform.version>
56
59
</properties >
57
60
58
61
<dependencies >
221
224
</execution >
222
225
</executions >
223
226
</plugin >
227
+ <plugin >
228
+ <groupId >org.apache.maven.plugins</groupId >
229
+ <artifactId >maven-surefire-plugin</artifactId >
230
+ <version >${maven-surefire-plugin.version} </version >
231
+ <configuration >
232
+ <includes >
233
+ <include >**/Test*.java</include >
234
+ <include >**/*Test.java</include >
235
+ <include >**/*Tests.java</include >
236
+ <include >**/*TestCase.java</include >
237
+ </includes >
238
+ </configuration >
239
+ <dependencies >
240
+ <dependency >
241
+ <groupId >org.junit.platform</groupId >
242
+ <artifactId >junit-platform-surefire-provider</artifactId >
243
+ <version >${junit.platform.version} </version >
244
+ </dependency >
245
+ <dependency >
246
+ <groupId >org.junit.jupiter</groupId >
247
+ <artifactId >junit-jupiter-engine</artifactId >
248
+ <version >${junit.jupiter.version} </version >
249
+ </dependency >
250
+ </dependencies >
251
+ </plugin >
224
252
<plugin >
225
253
<groupId >com.coveo</groupId >
226
254
<artifactId >fmt-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments