4a7b2f5784b94327ad2a480705260e22b7db7258
[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.9</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   <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   </dependencies>
49
50   <repositories>
51     <repository>
52       <id>browserid-snapshots</id>
53       <name>browserid-snapshots</name>
54       <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
55     </repository>
56   </repositories>
57
58   <build>
59     <plugins>
60       <plugin>
61         <groupId>org.apache.maven.plugins</groupId>
62         <artifactId>maven-jar-plugin</artifactId>
63         <version>2.6</version>
64         <executions>
65           <execution>
66             <goals>
67               <goal>test-jar</goal>
68             </goals>
69           </execution>
70         </executions>
71       </plugin>
72     </plugins>
73   </build>
74
75 <!-- checkstyle and spotbugds enforced by odlparent since Magnesium -->
76   <properties>
77     <!-- odlparent.checkstyle.enforce>false</odlparent.checkstyle.enforce -->
78     <odlparent.spotbugs.enforce>false</odlparent.spotbugs.enforce>
79   </properties>
80
81 </project>