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 >spring-framework-tutorial-parent</artifactId >
7+ <groupId >com.jstobigdata</groupId >
8+ <version >1.0-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <artifactId >spring-core-null-safety</artifactId >
13+
14+ <dependencies >
15+ <dependency >
16+ <groupId >org.springframework</groupId >
17+ <artifactId >spring-core</artifactId >
18+ </dependency >
19+
20+ <dependency >
21+ <groupId >org.springframework</groupId >
22+ <artifactId >spring-context</artifactId >
23+ </dependency >
24+
25+ <!-- Test Dependencies-->
26+ <dependency >
27+ <groupId >org.junit.jupiter</groupId >
28+ <artifactId >junit-jupiter-api</artifactId >
29+ <scope >test</scope >
30+ </dependency >
31+
32+ <dependency >
33+ <groupId >org.junit.jupiter</groupId >
34+ <artifactId >junit-jupiter-engine</artifactId >
35+ <scope >test</scope >
36+ </dependency >
37+
38+ <dependency >
39+ <groupId >org.springframework</groupId >
40+ <artifactId >spring-test</artifactId >
41+ <scope >test</scope >
42+ </dependency >
43+ </dependencies >
44+
45+ <dependencyManagement >
46+ <dependencies >
47+ <dependency >
48+ <groupId >com.jstobigdata</groupId >
49+ <artifactId >spring-tutorial-boms</artifactId >
50+ <type >pom</type >
51+ <scope >import</scope >
52+ <version >1.0-SNAPSHOT</version >
53+ </dependency >
54+ </dependencies >
55+ </dependencyManagement >
56+
57+ <!-- For Junit-jupiter, upgrade the maven surefire -->
58+ <build >
59+ <plugins >
60+ <plugin >
61+ <groupId >org.apache.maven.plugins</groupId >
62+ <artifactId >maven-surefire-plugin</artifactId >
63+ <version >3.0.0-M3</version >
64+ </plugin >
65+ </plugins >
66+ </build >
67+ </project >
0 commit comments