Servicehandler Tests
[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.3-SNAPSHOT</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     <dependency>
56       <groupId>${project.groupId}</groupId>
57       <artifactId>transportpce-stubmodels</artifactId>
58       <version>${project.version}</version>
59     </dependency>
60
61     <!-- Testing Dependencies -->
62     <dependency>
63       <groupId>junit</groupId>
64       <artifactId>junit</artifactId>
65       <scope>test</scope>
66     </dependency>
67
68     <dependency>
69       <groupId>org.mockito</groupId>
70       <artifactId>mockito-core</artifactId>
71       <scope>test</scope>
72     </dependency>
73
74     <!-- Ajout Fakepce -->
75     <dependency>
76         <groupId>com.fasterxml.jackson.dataformat</groupId>
77         <artifactId>jackson-dataformat-xml</artifactId>
78     </dependency>
79     <dependency>
80         <groupId>com.fasterxml.jackson.core</groupId>
81         <artifactId>jackson-core</artifactId>
82     </dependency>
83     <dependency>
84         <groupId>com.fasterxml.jackson.core</groupId>
85         <artifactId>jackson-annotations</artifactId>
86     </dependency>
87     <dependency>
88         <groupId>com.fasterxml.jackson.core</groupId>
89         <artifactId>jackson-databind</artifactId>
90     </dependency>
91     <dependency>
92         <groupId>com.fasterxml.jackson.module</groupId>
93         <artifactId>jackson-module-jaxb-annotations</artifactId>
94     </dependency>
95     <dependency>
96         <groupId>com.fasterxml.woodstox</groupId>
97         <artifactId>woodstox-core</artifactId>
98         <version>5.0.3</version>
99     </dependency>
100     <dependency>
101         <groupId>org.codehaus.woodstox</groupId>
102         <artifactId>stax2-api</artifactId>
103     </dependency>
104   </dependencies>
105 </project>