b1cb249c3eae53dad22f307e728afe6da28691bd
[transportpce.git] / tests / stubpce / 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"
13          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14
15   <modelVersion>4.0.0</modelVersion>
16
17   <parent>
18     <groupId>org.opendaylight.mdsal</groupId>
19     <artifactId>binding-parent</artifactId>
20     <version>0.13.1-SNAPSHOT</version>
21     <relativePath/>
22   </parent>
23
24   <groupId>org.opendaylight.transportpce</groupId>
25   <artifactId>transportpce-stubpce</artifactId>
26   <version>0.3.0-SNAPSHOT</version>
27   <packaging>bundle</packaging>
28
29   <!-- Ajout Fakepce to add fakepce.xml to target/classes -->
30   <build>
31     <plugins>
32       <plugin>
33         <groupId>org.apache.maven.plugins</groupId>
34         <artifactId>maven-surefire-plugin</artifactId>
35         <configuration>
36           <additionalClasspathElements>
37             <additionalClasspathElement>src/main/resources</additionalClasspathElement>
38           </additionalClasspathElements>
39         </configuration>
40       </plugin>
41     </plugins>
42   </build>
43   
44   <dependencyManagement>
45     <dependencies>
46       <dependency>
47         <groupId>org.opendaylight.controller</groupId>
48         <artifactId>mdsal-artifacts</artifactId>
49         <version>1.8.1-SNAPSHOT</version>
50         <scope>import</scope>
51         <type>pom</type>
52       </dependency>
53       <dependency>
54         <groupId>org.opendaylight.netconf</groupId>
55         <artifactId>netconf-artifacts</artifactId>
56         <version>1.5.1-SNAPSHOT</version>
57         <scope>import</scope>
58         <type>pom</type>
59       </dependency>
60     </dependencies>
61   </dependencyManagement>
62
63   <dependencies>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>transportpce-api</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>${project.groupId}.ordmodels</groupId>
71       <artifactId>transportpce-ordmodels-common</artifactId>
72       <version>${project.version}</version>
73     </dependency>
74     <dependency>
75       <groupId>${project.groupId}.ordmodels</groupId>
76       <artifactId>transportpce-ordmodels-network</artifactId>
77       <version>${project.version}</version>
78     </dependency>
79     <dependency>
80       <groupId>${project.groupId}.ordmodels</groupId>
81       <artifactId>transportpce-ordmodels-service</artifactId>
82       <version>${project.version}</version>
83     </dependency>
84     <dependency>
85       <groupId>${project.groupId}.ordmodels</groupId>
86       <artifactId>transportpce-ordmodels-device</artifactId>
87       <version>${project.version}</version>
88     </dependency>
89     <dependency>
90       <groupId>${project.groupId}</groupId>
91       <artifactId>transportpce-stubmodels</artifactId>
92       <version>${project.version}</version>
93     </dependency>
94     <dependency>
95       <groupId>org.opendaylight.controller.model</groupId>
96       <artifactId>model-topology</artifactId>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.netconf</groupId>
100       <artifactId>sal-netconf-connector</artifactId>
101     </dependency>
102     <dependency>
103       <groupId>org.osgi</groupId>
104       <artifactId>org.osgi.core</artifactId>
105     </dependency>
106     <dependency>
107       <groupId>org.apache.commons</groupId>
108       <artifactId>commons-lang3</artifactId>
109     </dependency>
110
111     <!-- Testing Dependencies -->
112     <dependency>
113       <groupId>junit</groupId>
114       <artifactId>junit</artifactId>
115       <scope>test</scope>
116     </dependency>
117
118     <dependency>
119       <groupId>org.mockito</groupId>
120       <artifactId>mockito-core</artifactId>
121       <scope>test</scope>
122     </dependency>
123
124     <!-- Ajout Fakepce -->
125     <dependency>
126         <groupId>com.fasterxml.jackson.dataformat</groupId>
127         <artifactId>jackson-dataformat-xml</artifactId>
128     </dependency>
129     <dependency>
130         <groupId>com.fasterxml.jackson.core</groupId>
131         <artifactId>jackson-core</artifactId>
132     </dependency>
133     <dependency>
134         <groupId>com.fasterxml.jackson.core</groupId>
135         <artifactId>jackson-annotations</artifactId>
136     </dependency>
137     <dependency>
138         <groupId>com.fasterxml.jackson.core</groupId>
139         <artifactId>jackson-databind</artifactId>
140     </dependency>
141     <dependency>
142         <groupId>com.fasterxml.jackson.module</groupId>
143         <artifactId>jackson-module-jaxb-annotations</artifactId>
144     </dependency>
145     <dependency>
146         <groupId>com.fasterxml.woodstox</groupId>
147         <artifactId>woodstox-core</artifactId>
148         <version>5.0.3</version>
149     </dependency>
150     <dependency>
151         <groupId>org.codehaus.woodstox</groupId>
152         <artifactId>stax2-api</artifactId>
153     </dependency>
154   </dependencies>
155 </project>