1- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
2- <modelVersion >4.0.0</modelVersion >
3- <groupId >LeetCode-30-Day-Challenge</groupId >
4- <artifactId >LeetCode-30-Day-Challenge</artifactId >
5- <version >0.0.1-SNAPSHOT</version >
6- <build >
7- <sourceDirectory >src</sourceDirectory >
8- <plugins >
9- <plugin >
10- <artifactId >maven-compiler-plugin</artifactId >
11- <version >3.8.0</version >
12- <configuration >
13- <release >13</release >
14- </configuration >
15- </plugin >
16- </plugins >
17- </build >
1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <groupId >LeetCode-30-Day-Challenge</groupId >
6+ <artifactId >LeetCode-30-Day-Challenge</artifactId >
7+ <version >0.0.1-SNAPSHOT</version >
8+ <build >
9+ <sourceDirectory >src</sourceDirectory >
10+ <plugins >
11+ <plugin >
12+ <artifactId >maven-compiler-plugin</artifactId >
13+ <version >3.8.0</version >
14+ <configuration >
15+ <release >13</release >
16+ </configuration >
17+ </plugin >
18+
19+ <plugin >
20+ <artifactId >maven-surefire-plugin</artifactId >
21+ <version >2.19</version >
22+ <dependencies >
23+ <dependency >
24+ <groupId >org.junit.platform</groupId >
25+ <artifactId >junit-platform-surefire-provider</artifactId >
26+ <version >1.0.0-M4</version >
27+ </dependency >
28+ <dependency >
29+ <groupId >org.junit.vintage</groupId >
30+ <artifactId >junit-vintage-engine</artifactId >
31+ <version >4.12.0-M4</version >
32+ </dependency >
33+ </dependencies >
34+ </plugin >
35+ </plugins >
36+ </build >
37+
38+ <properties >
39+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
40+ <maven .compiler.source>1.8</maven .compiler.source>
41+ <maven .compiler.target>${maven.compiler.source} </maven .compiler.target>
42+ <junit .jupiter.version>5.5.2</junit .jupiter.version>
43+ <junit .platform.version>1.5.2</junit .platform.version>
44+ </properties >
45+
46+ <dependencies >
47+ <dependency >
48+ <groupId >org.junit.jupiter</groupId >
49+ <artifactId >junit-jupiter-engine</artifactId >
50+ <version >${junit.jupiter.version} </version >
51+ <scope >test</scope >
52+ </dependency >
53+ <dependency >
54+ <groupId >org.junit.platform</groupId >
55+ <artifactId >junit-platform-runner</artifactId >
56+ <version >${junit.platform.version} </version >
57+ <scope >test</scope >
58+ </dependency >
59+ </dependencies >
60+
1861</project >
0 commit comments