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