5e2250d9e3db51bb289ac237e0b7b3215ba47af2
[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.mdsal</groupId>
19     <artifactId>binding-parent</artifactId>
20     <version>4.0.7</version>
21     <relativePath/>
22   </parent>
23
24   <groupId>org.opendaylight.transportpce</groupId>
25   <artifactId>transportpce-pce</artifactId>
26   <version>0.5.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>${project.groupId}</groupId>
60       <artifactId>transportpce-common</artifactId>
61       <version>${project.version}</version>
62     </dependency>
63     <dependency>
64       <groupId>org.jgrapht</groupId>
65       <artifactId>jgrapht-core</artifactId>
66       <version>1.2.0</version>
67     </dependency>
68
69     <!-- Testing Dependencies -->
70     <dependency>
71       <groupId>junit</groupId>
72       <artifactId>junit</artifactId>
73       <scope>test</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.mockito</groupId>
77       <artifactId>mockito-core</artifactId>
78       <scope>test</scope>
79     </dependency>
80
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>test-common</artifactId>
84       <version>${project.version}</version>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.controller</groupId>
89       <artifactId>sal-binding-broker-impl</artifactId>
90       <version>1.10.2-SNAPSHOT</version>
91       <scope>test</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.opendaylight.mdsal</groupId>
95       <artifactId>mdsal-binding-dom-codec</artifactId>
96     </dependency>
97
98     <!-- Sodium bump: javax.annotation.Nullable and friends -->
99     <dependency>
100       <groupId>com.google.code.findbugs</groupId>
101       <artifactId>jsr305</artifactId>
102       <optional>true</optional>
103     </dependency>
104   </dependencies>
105
106   <repositories>
107     <repository>
108       <id>browserid-snapshots</id>
109       <name>browserid-snapshots</name>
110       <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
111     </repository>
112   </repositories>
113
114 </project>