c938d360db10baef6eca1d288db880bc93cefd31
[transportpce.git] / tests / stubrenderer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2017 Orange and others. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9
10 Author: Martial Coulibaly <martial.coulibaly@gfi.com> on behalf of Orange
11 -->
12 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13   <modelVersion>4.0.0</modelVersion>
14
15   <parent>
16     <groupId>org.opendaylight.mdsal</groupId>
17     <artifactId>binding-parent</artifactId>
18     <version>0.13.1-SNAPSHOT</version>
19     <relativePath/>
20   </parent>
21
22   <groupId>org.opendaylight.transportpce</groupId>
23   <artifactId>transportpce-stubrenderer</artifactId>
24   <version>0.3.0-SNAPSHOT</version>
25   <packaging>bundle</packaging>
26
27   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.controller</groupId>
31         <artifactId>mdsal-artifacts</artifactId>
32         <version>1.8.1-SNAPSHOT</version>
33         <scope>import</scope>
34         <type>pom</type>
35       </dependency>
36       <dependency>
37         <groupId>org.opendaylight.netconf</groupId>
38         <artifactId>netconf-artifacts</artifactId>
39         <version>1.5.1-SNAPSHOT</version>
40         <scope>import</scope>
41         <type>pom</type>
42       </dependency>
43     </dependencies>
44   </dependencyManagement>
45
46   <dependencies>
47     <dependency>
48       <groupId>${project.groupId}</groupId>
49       <artifactId>transportpce-api</artifactId>
50       <version>${project.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>${project.groupId}.ordmodels</groupId>
54       <artifactId>transportpce-ordmodels-common</artifactId>
55       <version>${project.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>${project.groupId}.ordmodels</groupId>
59       <artifactId>transportpce-ordmodels-network</artifactId>
60       <version>${project.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>${project.groupId}.ordmodels</groupId>
64       <artifactId>transportpce-ordmodels-service</artifactId>
65       <version>${project.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>${project.groupId}.ordmodels</groupId>
69       <artifactId>transportpce-ordmodels-device</artifactId>
70       <version>${project.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>${project.groupId}</groupId>
74       <artifactId>transportpce-stubmodels</artifactId>
75       <version>${project.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller.model</groupId>
79       <artifactId>model-topology</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.netconf</groupId>
83       <artifactId>sal-netconf-connector</artifactId>
84     </dependency>
85
86     <!-- Testing Dependencies -->
87     <dependency>
88       <groupId>junit</groupId>
89       <artifactId>junit</artifactId>
90       <scope>test</scope>
91     </dependency>
92
93     <dependency>
94       <groupId>org.mockito</groupId>
95       <artifactId>mockito-core</artifactId>
96       <scope>test</scope>
97     </dependency>
98   </dependencies>
99 </project>