File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <parent >
6+ <artifactId >java-examples-parent</artifactId >
7+ <groupId >io.mincong</groupId >
8+ <version >1.0.0-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <artifactId >java-examples-junit5</artifactId >
13+ <dependencies >
14+ <dependency >
15+ <groupId >org.junit.jupiter</groupId >
16+ <artifactId >junit-jupiter-api</artifactId >
17+ <scope >test</scope >
18+ </dependency >
19+ <dependency >
20+ <groupId >org.junit.jupiter</groupId >
21+ <artifactId >junit-jupiter-engine</artifactId >
22+ <scope >test</scope >
23+ </dependency >
24+ <dependency >
25+ <groupId >org.junit.jupiter</groupId >
26+ <artifactId >junit-jupiter-params</artifactId >
27+ <scope >test</scope >
28+ </dependency >
29+ <dependency >
30+ <groupId >org.assertj</groupId >
31+ <artifactId >assertj-core</artifactId >
32+ <scope >test</scope >
33+ </dependency >
34+ </dependencies >
35+ </project >
Original file line number Diff line number Diff line change 6161 <module >jetty</module >
6262 <module >protobuf</module >
6363 <module >reliability</module >
64+ <module >junit5</module >
6465 </modules >
6566
6667 <dependencyManagement >
You can’t perform that action at this time.
0 commit comments