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