Merge "Bug 607 - PCEP Segment Routing - yang model"
[bgpcep.git] / pcep / segment-routing / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2013 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 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12    <modelVersion>4.0.0</modelVersion>
13    <scm>
14       <connection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</connection>
15       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/bgpcep.git</developerConnection>
16       <url>https://wiki.opendaylight.org/view/BGP_LS_PCEP:Main</url>
17       <tag>HEAD</tag>
18    </scm>
19    <parent>
20       <groupId>org.opendaylight.bgpcep</groupId>
21       <artifactId>pcep-parent</artifactId>
22       <version>0.3.1-SNAPSHOT</version>
23    </parent>
24    <artifactId>pcep-segment-routing</artifactId>
25    <description>PCE Segment Routing model plugin</description>
26    <packaging>bundle</packaging>
27    <name>${project.artifactId}</name>
28    <prerequisites>
29       <maven>3.0.4</maven>
30    </prerequisites>
31
32    <dependencies>
33       <dependency>
34          <groupId>${project.groupId}</groupId>
35          <artifactId>pcep-ietf-stateful07</artifactId>
36       </dependency>
37       <dependency>
38         <groupId>junit</groupId>
39         <artifactId>junit</artifactId>
40       </dependency>
41    </dependencies>
42
43    <build>
44       <plugins>
45          <plugin>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-maven-plugin</artifactId>
48          </plugin>
49          <plugin>
50             <groupId>org.apache.felix</groupId>
51             <artifactId>maven-bundle-plugin</artifactId>
52             <extensions>true</extensions>
53             <configuration>
54                <instructions>
55                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
56                </instructions>
57             </configuration>
58          </plugin>
59       </plugins>
60    </build>
61 </project>