Cleanup and optimize POM
[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.8</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       <optional>true</optional>
46     </dependency>
47   </dependencies>
48
49   <repositories>
50     <repository>
51       <id>browserid-snapshots</id>
52       <name>browserid-snapshots</name>
53       <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
54     </repository>
55   </repositories>
56
57   <build>
58     <plugins>
59       <plugin>
60         <groupId>org.apache.maven.plugins</groupId>
61         <artifactId>maven-jar-plugin</artifactId>
62         <version>2.6</version>
63         <executions>
64           <execution>
65             <goals>
66               <goal>test-jar</goal>
67             </goals>
68           </execution>
69         </executions>
70       </plugin>
71     </plugins>
72   </build>
73 </project>