Update all pom.xml to be aligned with Oxygen
[transportpce.git] / 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.0-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   <dependencies>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>transportpce-api</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>transportpce-ordmodels</artifactId>
38       <version>${project.version}</version>
39     </dependency>
40
41     <!-- Testing Dependencies -->
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45       <scope>test</scope>
46     </dependency>
47
48     <dependency>
49       <groupId>org.mockito</groupId>
50       <artifactId>mockito-core</artifactId>
51       <scope>test</scope>
52     </dependency>
53   </dependencies>
54 </project>