fe5e8b1b404215970da97c59d0178525f441c9a2
[transportpce.git] / common / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright © 2016 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 -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
8     <modelVersion>4.0.0</modelVersion>
9
10     <parent>
11         <groupId>org.opendaylight.mdsal</groupId>
12         <artifactId>binding-parent</artifactId>
13         <version>8.0.7</version>
14         <relativePath />
15     </parent>
16
17     <groupId>org.opendaylight.transportpce</groupId>
18     <artifactId>transportpce-common</artifactId>
19     <version>5.0.0-SNAPSHOT</version>
20     <packaging>bundle</packaging>
21
22     <dependencyManagement>
23         <dependencies>
24             <dependency>
25                 <groupId>org.opendaylight.netconf</groupId>
26                 <artifactId>netconf-artifacts</artifactId>
27                 <version>2.0.7</version>
28                 <scope>import</scope>
29                 <type>pom</type>
30             </dependency>
31         </dependencies>
32     </dependencyManagement>
33
34     <dependencies>
35         <dependency>
36             <groupId>${project.groupId}.ordmodels</groupId>
37             <artifactId>transportpce-ordmodels-device</artifactId>
38             <version>${project.version}</version>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}.ordmodels</groupId>
42             <artifactId>transportpce-ordmodels-network</artifactId>
43             <version>${project.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>${project.groupId}</groupId>
47             <artifactId>transportpce-api</artifactId>
48             <version>${project.version}</version>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.netconf</groupId>
52             <artifactId>sal-netconf-connector</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.mdsal</groupId>
56             <artifactId>mdsal-binding-dom-codec-spi</artifactId>
57         </dependency>
58         <!-- Testing dependencies -->
59         <dependency>
60             <groupId>org.opendaylight.transportpce</groupId>
61             <artifactId>test-common</artifactId>
62             <version>${project.version}</version>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.mdsal</groupId>
67             <artifactId>mdsal-binding-generator</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.mdsal</groupId>
72             <artifactId>mdsal-binding-runtime-spi</artifactId>
73             <scope>test</scope>
74         </dependency>
75     </dependencies>
76 </project>