5bb34e77d16374b600457413a51dbc7cf120e276
[transportpce.git] / pce / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2017 AT&T 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.odlparent</groupId>
19     <artifactId>bundle-parent</artifactId>
20     <version>3.1.4</version>
21     <relativePath/>
22   </parent>
23
24   <groupId>org.opendaylight.transportpce</groupId>
25   <artifactId>transportpce-pce</artifactId>
26   <version>0.3.0-SNAPSHOT</version>
27   <packaging>bundle</packaging>
28
29   <build>
30     <plugins>
31       <plugin>
32         <groupId>org.apache.maven.plugins</groupId>
33         <artifactId>maven-jar-plugin</artifactId>
34         <version>2.6</version>
35         <executions>
36           <execution>
37             <goals>
38               <goal>test-jar</goal>
39             </goals>
40           </execution>
41         </executions>
42       </plugin>
43     </plugins>
44   </build>
45
46   <dependencies>
47
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>transportpce-api</artifactId>
51       <version>${project.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>${project.groupId}</groupId>
55       <artifactId>transportpce-networkmodel</artifactId>
56       <version>${project.version}</version>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller.thirdparty</groupId>
60       <artifactId>net.sf.jung2</artifactId>
61       <version>2.0.1</version>
62     </dependency>
63
64     <!-- Testing Dependencies -->
65     <dependency>
66       <groupId>junit</groupId>
67       <artifactId>junit</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.mockito</groupId>
72       <artifactId>mockito-core</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>${project.groupId}</groupId>
77       <artifactId>test-common</artifactId>
78       <version>${project.version}</version>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.controller</groupId>
83       <artifactId>sal-binding-broker-impl</artifactId>
84       <version>1.8.1-SNAPSHOT</version>
85       <scope>test</scope>
86     </dependency>
87
88   </dependencies>
89
90 </project>