Release Boron-SR1
[bgpcep.git] / bgp / bmp-parser-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <modelVersion>4.0.0</modelVersion>
6     <scm>
7         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
8         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
9         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
10         <tag>HEAD</tag>
11     </scm>
12
13     <parent>
14         <groupId>org.opendaylight.bgpcep</groupId>
15         <artifactId>bgp-parent</artifactId>
16         <version>0.6.1-Boron-SR1</version>
17     </parent>
18
19     <artifactId>bgp-bmp-parser-impl</artifactId>
20     <packaging>bundle</packaging>
21     <name>${project.artifactId}</name>
22     <prerequisites>
23         <maven>3.0.4</maven>
24     </prerequisites>
25
26     <dependencies>
27         <dependency>
28             <groupId>com.google.guava</groupId>
29             <artifactId>guava</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>${project.groupId}</groupId>
33             <artifactId>bgp-bmp-api</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}</groupId>
37             <artifactId>bgp-bmp-spi</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.mdsal.model</groupId>
41             <artifactId>ietf-yang-types-20130715</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.mdsal.model</groupId>
45             <artifactId>ietf-inet-types-2013-07-15</artifactId>
46         </dependency>
47
48         <!-- test dependencies -->
49         <dependency>
50             <groupId>junit</groupId>
51             <artifactId>junit</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>${project.groupId}</groupId>
55             <artifactId>bgp-parser-impl</artifactId>
56             <scope>test</scope>
57         </dependency>
58     </dependencies>
59
60     <build>
61         <plugins>
62             <plugin>
63                 <groupId>org.apache.felix</groupId>
64                 <artifactId>maven-bundle-plugin</artifactId>
65                 <extensions>true</extensions>
66                 <configuration>
67                     <instructions>
68                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
69                     </instructions>
70                 </configuration>
71             </plugin>
72             <!-- test jar -->
73             <plugin>
74                 <groupId>org.apache.maven.plugins</groupId>
75                 <artifactId>maven-jar-plugin</artifactId>
76                 <executions>
77                     <execution>
78                         <goals>
79                             <goal>test-jar</goal>
80                         </goals>
81                         <phase>package</phase>
82                     </execution>
83                 </executions>
84             </plugin>
85         </plugins>
86     </build>
87
88   <!--
89       Maven Site Configuration
90
91       The following configuration is necessary for maven-site-plugin to
92       correctly identify the correct deployment path for OpenDaylight Maven
93       sites.
94   -->
95   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
96
97   <distributionManagement>
98     <site>
99       <id>opendaylight-site</id>
100       <url>${nexus.site.url}/${project.artifactId}/</url>
101     </site>
102   </distributionManagement>
103 </project>