creates common test functions
[transportpce.git] / test-common / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright © 2017 Orange and others. All rights reserved. This program and the accompanying materials
4     are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
5     and is available at http://www.eclipse.org/legal/epl-v10.html Author: Martial Coulibaly <martial.coulibaly@gfi.com>
6     on behalf of Orange -->
7 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
9     <modelVersion>4.0.0</modelVersion>
10
11     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>bundle-parent</artifactId>
14         <version>2.0.5</version>
15         <relativePath/>
16     </parent>
17
18     <groupId>org.opendaylight.transportpce</groupId>
19     <artifactId>test-common</artifactId>
20     <version>0.2.0</version>
21     <packaging>bundle</packaging>
22
23     <dependencies>
24         <dependency>
25             <groupId>com.google.guava</groupId>
26             <artifactId>guava</artifactId>
27         </dependency>
28
29         <dependency>
30             <groupId>org.slf4j</groupId>
31             <artifactId>slf4j-api</artifactId>
32         </dependency>
33
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>sal-binding-broker-impl</artifactId>
37             <version>1.6.0</version>
38         </dependency>
39
40         <dependency>
41             <groupId>org.opendaylight.controller</groupId>
42             <artifactId>sal-binding-api</artifactId>
43             <version>1.6.0</version>
44         </dependency>
45
46         <dependency>
47             <groupId>org.opendaylight.yangtools</groupId>
48             <artifactId>yang-data-codec-xml</artifactId>
49             <version>1.2.0</version>
50         </dependency>
51
52         <dependency>
53             <groupId>org.opendaylight.yangtools</groupId>
54             <artifactId>yang-data-codec-gson</artifactId>
55             <version>1.2.0</version>
56         </dependency>
57
58     </dependencies>
59 </project>