1cdaff5bd101ca24639ada1bddc743be2254093b
[bgpcep.git] / bgp / l3vpn / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2016 Cisco Systems, Inc. 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
11 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13     <modelVersion>4.0.0</modelVersion>
14     <scm>
15         <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
16         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
17         <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
18         <tag>HEAD</tag>
19     </scm>
20     <parent>
21         <groupId>org.opendaylight.bgpcep</groupId>
22         <artifactId>bgp-parent</artifactId>
23         <version>0.6.0-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>bgp-l3vpn</artifactId>
27     <description>BGP L3 VPN</description>
28     <packaging>bundle</packaging>
29     <name>${project.artifactId}</name>
30
31     <dependencies>
32         <dependency>
33             <groupId>com.google.guava</groupId>
34             <artifactId>guava</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.mdsal.model</groupId>
38             <artifactId>ietf-inet-types</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>${project.groupId}</groupId>
42             <artifactId>bgp-parser-api</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.yangtools</groupId>
46             <artifactId>concepts</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>${project.groupId}</groupId>
50             <artifactId>bgp-rib-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>${project.groupId}</groupId>
54             <artifactId>bgp-concepts</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.yangtools</groupId>
58             <artifactId>yang-common</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.mdsal</groupId>
62             <artifactId>yang-binding</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>bgp-bmp-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>bgp-labeled-unicast</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.osgi</groupId>
74             <artifactId>org.osgi.core</artifactId>
75             <scope>provided</scope>
76          </dependency>
77
78         <!-- test scope dependencies -->
79         <dependency>
80             <groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82         </dependency>
83     </dependencies>
84
85     <build>
86         <plugins>
87             <plugin>
88                 <groupId>org.opendaylight.yangtools</groupId>
89                 <artifactId>yang-maven-plugin</artifactId>
90             </plugin>
91             <plugin>
92                 <groupId>org.apache.felix</groupId>
93                 <artifactId>maven-bundle-plugin</artifactId>
94                 <extensions>true</extensions>
95                 <configuration>
96                     <instructions>
97                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
98                     </instructions>
99                 </configuration>
100             </plugin>
101         </plugins>
102     </build>
103
104   <!--
105       Maven Site Configuration
106
107       The following configuration is necessary for maven-site-plugin to
108       correctly identify the correct deployment path for OpenDaylight Maven
109       sites.
110   -->
111   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
112
113   <distributionManagement>
114     <site>
115       <id>opendaylight-site</id>
116       <url>${nexus.site.url}/${project.artifactId}/</url>
117     </site>
118   </distributionManagement>
119 </project>