BUG-110: integration test message -> parser -> rib -> md-sal.
[bgpcep.git] / integration-tests / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
6         <parent>
7                 <groupId>org.opendaylight.bgpcep</groupId>
8                 <artifactId>protocol-parent</artifactId>
9                 <version>0.3.0-SNAPSHOT</version>
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <artifactId>integration-tests</artifactId>
14         <description>BGPCEP integration tests</description>
15         <packaging>jar</packaging>
16         <name>${project.artifactId}</name>
17         <prerequisites>
18                 <maven>3.0.4</maven>
19         </prerequisites>
20
21     <properties>
22         <exam.version>3.3.0</exam.version>
23         <url.version>1.6.0</url.version>
24         <felix.version>4.2.1</felix.version>
25     </properties>
26
27         <dependencies>
28         <dependency>
29                         <groupId>${project.groupId}</groupId>
30                         <artifactId>bgp-parser-mock</artifactId>
31             <version>${project.version}</version>
32             <scope>test</scope>
33         </dependency>
34                 <dependency>
35                         <groupId>${project.groupId}</groupId>
36                         <artifactId>bgp-rib-mock</artifactId>
37                         <version>${project.version}</version>
38                         <scope>test</scope>
39                 </dependency>
40         <dependency>
41                         <groupId>${project.groupId}</groupId>
42                         <artifactId>bgp-testtool</artifactId>
43             <version>${project.version}</version>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47                         <groupId>${project.groupId}</groupId>
48                         <artifactId>pcep-testtool</artifactId>
49             <version>${project.version}</version>
50             <scope>test</scope>
51         </dependency>
52
53         <dependency>
54                         <groupId>${project.groupId}</groupId>
55             <artifactId>programming-api</artifactId>
56             <version>${project.version}</version>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60                         <groupId>${project.groupId}</groupId>
61             <artifactId>programming-tunnel-api</artifactId>
62             <version>${project.version}</version>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66                         <groupId>${project.groupId}</groupId>
67             <artifactId>topology-api</artifactId>
68             <version>${project.version}</version>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72                         <groupId>${project.groupId}</groupId>
73             <artifactId>topology-segment-routing</artifactId>
74             <version>${project.version}</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78                         <groupId>${project.groupId}</groupId>
79             <artifactId>topology-tunnel-api</artifactId>
80             <version>${project.version}</version>
81             <scope>test</scope>
82         </dependency>
83
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>sal-binding-broker-impl</artifactId>
87             <version>1.0-SNAPSHOT</version>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.yangtools</groupId>
92             <artifactId>concepts</artifactId>
93             <version>0.1.1-SNAPSHOT</version>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.yangtools</groupId>
98             <artifactId>yang-binding</artifactId>
99             <scope>test</scope>
100         </dependency>
101         <dependency>
102             <groupId>org.opendaylight.yangtools</groupId>
103             <artifactId>yang-common</artifactId>
104             <scope>test</scope>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
108             <artifactId>xtend-lib-osgi</artifactId>
109             <version>2.4.3</version>
110             <scope>test</scope>
111         </dependency>
112
113                 <dependency>
114                         <groupId>com.google.guava</groupId>
115                         <artifactId>guava</artifactId>
116             <scope>test</scope>
117                 </dependency>
118         <dependency>
119             <groupId>org.ops4j.pax.exam</groupId>
120             <artifactId>pax-exam-container-forked</artifactId>
121             <version>${exam.version}</version>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.ops4j.pax.exam</groupId>
126             <artifactId>pax-exam-junit4</artifactId>
127             <version>${exam.version}</version>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>org.ops4j.pax.exam</groupId>
132             <artifactId>pax-exam-link-mvn</artifactId>
133             <version>${exam.version}</version>
134             <scope>test</scope>
135         </dependency>
136         <dependency>
137             <groupId>org.ops4j.pax.url</groupId>
138             <artifactId>pax-url-aether</artifactId>
139             <version>${url.version}</version>
140             <scope>test</scope>
141         </dependency>
142         <dependency>
143             <groupId>org.apache.felix</groupId>
144             <artifactId>org.apache.felix.framework</artifactId>
145             <version>${felix.version}</version>
146             <scope>test</scope>
147         </dependency>
148                 <dependency>
149                         <groupId>${project.groupId}</groupId>
150                         <artifactId>mockito-configuration</artifactId>
151                         <version>${project.version}</version>
152                         <scope>test</scope>
153                 </dependency>
154         </dependencies>
155 </project>