Fixup some warnings
[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         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.yangtools</groupId>
90             <artifactId>concepts</artifactId>
91             <version>0.1.1-SNAPSHOT</version>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.yangtools</groupId>
96             <artifactId>yang-binding</artifactId>
97             <scope>test</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.yangtools</groupId>
101             <artifactId>yang-common</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
106             <artifactId>xtend-lib-osgi</artifactId>
107             <version>2.4.3</version>
108             <scope>test</scope>
109         </dependency>
110
111                 <dependency>
112                         <groupId>com.google.guava</groupId>
113                         <artifactId>guava</artifactId>
114             <scope>test</scope>
115                 </dependency>
116         <dependency>
117             <groupId>org.ops4j.pax.exam</groupId>
118             <artifactId>pax-exam-container-forked</artifactId>
119             <version>${exam.version}</version>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>org.ops4j.pax.exam</groupId>
124             <artifactId>pax-exam-junit4</artifactId>
125             <version>${exam.version}</version>
126             <scope>test</scope>
127         </dependency>
128         <dependency>
129             <groupId>org.ops4j.pax.exam</groupId>
130             <artifactId>pax-exam-link-mvn</artifactId>
131             <version>${exam.version}</version>
132             <scope>test</scope>
133         </dependency>
134         <dependency>
135             <groupId>org.ops4j.pax.url</groupId>
136             <artifactId>pax-url-aether</artifactId>
137             <version>${url.version}</version>
138             <scope>test</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.apache.felix</groupId>
142             <artifactId>org.apache.felix.framework</artifactId>
143             <version>${felix.version}</version>
144             <scope>test</scope>
145         </dependency>
146                 <dependency>
147                         <groupId>${project.groupId}</groupId>
148                         <artifactId>mockito-configuration</artifactId>
149                         <version>${project.version}</version>
150                         <scope>test</scope>
151                 </dependency>
152         </dependencies>
153 </project>