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+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >com.baeldung</groupId >
8+ <artifactId >cdi</artifactId >
9+ <version >1.0-SNAPSHOT</version >
10+ <properties >
11+ <spring .version>4.3.1.RELEASE</spring .version>
12+ </properties >
13+ <dependencies >
14+ <!-- https://mvnrepository.com/artifact/junit/junit -->
15+ <dependency >
16+ <groupId >junit</groupId >
17+ <artifactId >junit</artifactId >
18+ <version >4.12</version >
19+ </dependency >
20+ <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
21+ <dependency >
22+ <groupId >org.springframework</groupId >
23+ <artifactId >spring-core</artifactId >
24+ <version >${spring.version} </version >
25+ </dependency >
26+ <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
27+ <dependency >
28+ <groupId >org.springframework</groupId >
29+ <artifactId >spring-context</artifactId >
30+ <version >${spring.version} </version >
31+ </dependency >
32+ <!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
33+ <dependency >
34+ <groupId >org.springframework</groupId >
35+ <artifactId >spring-test</artifactId >
36+ <version >${spring.version} </version >
37+ <scope >test</scope >
38+ </dependency >
39+ <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
40+ <dependency >
41+ <groupId >org.aspectj</groupId >
42+ <artifactId >aspectjweaver</artifactId >
43+ <version >1.8.9</version >
44+ </dependency >
45+ <!-- https://mvnrepository.com/artifact/org.jboss.weld.se/weld-se-core -->
46+ <dependency >
47+ <groupId >org.jboss.weld.se</groupId >
48+ <artifactId >weld-se-core</artifactId >
49+ <version >2.3.5.Final</version >
50+ </dependency >
51+ </dependencies >
52+ </project >
0 commit comments