Bump to odlparent 3.1.1 stable release
[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.controller</groupId>
19     <artifactId>config-parent</artifactId>
20     <version>0.8.2</version>
21     <relativePath/>
22   </parent>
23
24   <groupId>org.opendaylight.transportpce</groupId>
25   <artifactId>transportpce-stubpce</artifactId>
26   <version>0.2.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   <dependencies>
45     <dependency>
46       <groupId>${project.groupId}</groupId>
47       <artifactId>transportpce-api</artifactId>
48       <version>${project.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>${project.groupId}</groupId>
52       <artifactId>transportpce-ordmodels</artifactId>
53       <version>${project.version}</version>
54     </dependency>
55
56     <!-- Testing Dependencies -->
57     <dependency>
58       <groupId>junit</groupId>
59       <artifactId>junit</artifactId>
60       <scope>test</scope>
61     </dependency>
62
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-core</artifactId>
66       <scope>test</scope>
67     </dependency>
68
69     <!-- Ajout Fakepce -->
70     <dependency>
71         <groupId>com.fasterxml.jackson.dataformat</groupId>
72         <artifactId>jackson-dataformat-xml</artifactId>
73     </dependency>
74     <dependency>
75         <groupId>com.fasterxml.jackson.core</groupId>
76         <artifactId>jackson-core</artifactId>
77     </dependency>
78     <dependency>
79         <groupId>com.fasterxml.jackson.core</groupId>
80         <artifactId>jackson-annotations</artifactId>
81     </dependency>
82     <dependency>
83         <groupId>com.fasterxml.jackson.core</groupId>
84         <artifactId>jackson-databind</artifactId>
85     </dependency>
86     <dependency>
87         <groupId>com.fasterxml.jackson.module</groupId>
88         <artifactId>jackson-module-jaxb-annotations</artifactId>
89     </dependency>
90     <dependency>
91         <groupId>com.fasterxml.woodstox</groupId>
92         <artifactId>woodstox-core</artifactId>
93         <version>5.0.3</version>
94     </dependency>
95     <dependency>
96         <groupId>org.codehaus.woodstox</groupId>
97         <artifactId>stax2-api</artifactId>
98     </dependency>
99   </dependencies>
100 </project>