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 5353 <properties >
5454 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
5555 <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>
5659 </properties >
5760
5861 <dependencies >
221224 </execution >
222225 </executions >
223226 </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 >
224252 <plugin >
225253 <groupId >com.coveo</groupId >
226254 <artifactId >fmt-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments