b84248f1820e39b1764a1944a4eaf6bdce5ffdcd
[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>5.0.10</version>
21     <relativePath/>
22   </parent>
23
24   <groupId>org.opendaylight.transportpce</groupId>
25   <artifactId>transportpce-pce</artifactId>
26   <version>2.0.0-SNAPSHOT</version>
27   <packaging>bundle</packaging>
28
29   <dependencies>
30     <dependency>
31       <groupId>${project.groupId}</groupId>
32       <artifactId>transportpce-common</artifactId>
33       <version>${project.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>org.jgrapht</groupId>
37       <artifactId>jgrapht-core</artifactId>
38       <version>1.2.0</version>
39     </dependency>
40
41     <!-- Sodium bump: javax.annotation.Nullable and friends -->
42     <dependency>
43       <groupId>com.google.code.findbugs</groupId>
44       <artifactId>jsr305</artifactId>
45       <version>3.0.2</version>
46       <optional>true</optional>
47     </dependency>
48
49     <dependency>
50       <groupId>org.opendaylight.transportpce</groupId>
51       <artifactId>test-common</artifactId>
52       <version>${project.version}</version>
53       <scope>test</scope>
54     </dependency>
55
56     <dependency>
57       <groupId>org.mockito</groupId>
58       <artifactId>mockito-core</artifactId>
59       <version>2.25.0</version>
60       <scope>test</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.powermock</groupId>
64       <artifactId>powermock-core</artifactId>
65       <version>2.0.2</version>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.powermock</groupId>
70       <artifactId>powermock-api-mockito2</artifactId>
71       <version>2.0.2</version>
72       <scope>test</scope>
73     </dependency>
74     <dependency>
75       <groupId>org.powermock</groupId>
76       <artifactId>powermock-module-junit4</artifactId>
77       <version>2.0.2</version>
78       <scope>test</scope>
79     </dependency>
80   </dependencies>
81
82   <repositories>
83     <repository>
84       <id>browserid-snapshots</id>
85       <name>browserid-snapshots</name>
86       <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
87     </repository>
88   </repositories>
89
90   <build>
91     <plugins>
92       <plugin>
93         <groupId>org.apache.maven.plugins</groupId>
94         <artifactId>maven-jar-plugin</artifactId>
95         <version>2.6</version>
96         <executions>
97           <execution>
98             <goals>
99               <goal>test-jar</goal>
100             </goals>
101           </execution>
102         </executions>
103       </plugin>
104     </plugins>
105   </build>
106
107 </project>